diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-04-30 12:19:28 +0100 |
---|---|---|
committer | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-04-30 12:19:28 +0100 |
commit | d5aa207e46ff7ee838683a7d95ecf46fe42a9a56 (patch) | |
tree | 2fe7cf50bb45a3ca94f095695bab5414fa56c1f3 /include/asm-arm | |
parent | a6ad57fb4b5e9d68553f4440377b99f75588fa88 (diff) | |
download | linux-3.10-d5aa207e46ff7ee838683a7d95ecf46fe42a9a56.tar.gz linux-3.10-d5aa207e46ff7ee838683a7d95ecf46fe42a9a56.tar.bz2 linux-3.10-d5aa207e46ff7ee838683a7d95ecf46fe42a9a56.zip |
[PATCH] ARM: RTC: allow driver methods to return error
Allow RTC drivers to return error codes from their read_time
or read_alarm methods.
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/rtc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/rtc.h b/include/asm-arm/rtc.h index aa7e16b2e22..370dfe77589 100644 --- a/include/asm-arm/rtc.h +++ b/include/asm-arm/rtc.h @@ -18,9 +18,9 @@ struct rtc_ops { void (*release)(void); int (*ioctl)(unsigned int, unsigned long); - void (*read_time)(struct rtc_time *); + int (*read_time)(struct rtc_time *); int (*set_time)(struct rtc_time *); - void (*read_alarm)(struct rtc_wkalrm *); + int (*read_alarm)(struct rtc_wkalrm *); int (*set_alarm)(struct rtc_wkalrm *); int (*proc)(char *buf); }; |