1
0
Fork 0

[media] rc-core: fix return codes in ir_lirc_ioctl()

These should be -ENOSYS because not -EINVAL.

Reported-by: Sean Young <sean@mess.org>
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
hifive-unleashed-5.1
Dan Carpenter 2012-09-11 07:11:53 -03:00 committed by Mauro Carvalho Chehab
parent 48cafec9a9
commit 5f49908adb
1 changed files with 2 additions and 2 deletions

View File

@ -203,13 +203,13 @@ static long ir_lirc_ioctl(struct file *filep, unsigned int cmd,
/* TX settings */
case LIRC_SET_TRANSMITTER_MASK:
if (!dev->s_tx_mask)
return -EINVAL;
return -ENOSYS;
return dev->s_tx_mask(dev, val);
case LIRC_SET_SEND_CARRIER:
if (!dev->s_tx_carrier)
return -EINVAL;
return -ENOSYS;
return dev->s_tx_carrier(dev, val);