diff options
| author | Thomas Hommel <[email protected]> | 2007-07-31 00:37:31 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2007-07-31 15:39:36 -0700 |
| commit | c8ed39ebe0cf490abd7bf7c77b728dd6fefb2cf8 (patch) | |
| tree | 0a58ec2f09403df615fe728bd7c4bba03e3116f0 | |
| parent | a8bbf72ab9b3072ece630d97689145b1a2f01221 (diff) | |
rtc-dev: Make RTC driver return ENOTTY instead of ENOIOCTLCMD
Prevent the RTC driver from returning ENOIOCTLCMD to userspace.
Signed-off-by: Thomas Hommel <[email protected]>
Acked-by: Alessandro Zummo <[email protected]>
Cc: David Brownell <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | drivers/rtc/rtc-dev.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-dev.c b/drivers/rtc/rtc-dev.c index 304535942de2..005fff3a3508 100644 --- a/drivers/rtc/rtc-dev.c +++ b/drivers/rtc/rtc-dev.c @@ -348,6 +348,8 @@ static int rtc_dev_ioctl(struct inode *inode, struct file *file, case RTC_IRQP_SET: if (ops->irq_set_freq) err = rtc_irq_set_freq(rtc, rtc->irq_task, arg); + else + err = -ENOTTY; break; #if 0 |