mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
[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>
This commit is contained in:
parent
48cafec9a9
commit
5f49908adb
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user