diff options
author | Alessandro Zummo <alessandro.zummo@towertech.it> | 2006-05-20 15:00:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-05-21 12:59:21 -0700 |
commit | b3969e5831adac133b286600e74214e1ae42ec05 (patch) | |
tree | d708f1be2b626f0f73ab09a7e6a241640a5dd9fc /drivers/rtc/rtc-test.c | |
parent | eae07ac607f317ee6781983d3f9d8f77ef144b45 (diff) | |
download | op-kernel-dev-b3969e5831adac133b286600e74214e1ae42ec05.zip op-kernel-dev-b3969e5831adac133b286600e74214e1ae42ec05.tar.gz |
[PATCH] rtc subsystem: use ENOIOCTLCMD and ENOTTY where appropriate
Appropriately use -ENOIOCTLCMD and -ENOTTY when the ioctl is not
implemented by a driver.
(akpm: we're not allowed to return -ENOIOCTLCMD to userspace. This patch does
the right thing).
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/rtc/rtc-test.c')
-rw-r--r-- | drivers/rtc/rtc-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-test.c b/drivers/rtc/rtc-test.c index e1f7e8e..e1fa5fe 100644 --- a/drivers/rtc/rtc-test.c +++ b/drivers/rtc/rtc-test.c @@ -71,7 +71,7 @@ static int test_rtc_ioctl(struct device *dev, unsigned int cmd, return 0; default: - return -EINVAL; + return -ENOIOCTLCMD; } } |