diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-26 12:32:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-26 14:11:56 -0400 |
commit | c98dbe59ae4da701f81ba16eb02c94ed85e663c7 (patch) | |
tree | 95c65ad551bcdeb64bdc267b19988913c0b85f1c /drivers/rtc | |
parent | be03e56b777362a70f29399aaff9989fc3f3de63 (diff) |
fix missing arguments in drivers/rtc/rtc-stk17ta8.c
struct bin_attribute * is needed in bin_attribute ->read()/->write()
now. Incidentally, could people please run the fscking compiler
before and after applying their patch and compare the build logs?
That (and many, many other) would be caught immediately.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-stk17ta8.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-stk17ta8.c b/drivers/rtc/rtc-stk17ta8.c index f10d3facecbe..8288b6b2bf2b 100644 --- a/drivers/rtc/rtc-stk17ta8.c +++ b/drivers/rtc/rtc-stk17ta8.c | |||
@@ -258,7 +258,8 @@ static const struct rtc_class_ops stk17ta8_rtc_ops = { | |||
258 | .ioctl = stk17ta8_rtc_ioctl, | 258 | .ioctl = stk17ta8_rtc_ioctl, |
259 | }; | 259 | }; |
260 | 260 | ||
261 | static ssize_t stk17ta8_nvram_read(struct kobject *kobj, char *buf, | 261 | static ssize_t stk17ta8_nvram_read(struct kobject *kobj, |
262 | struct bin_attribute *attr, char *buf, | ||
262 | loff_t pos, size_t size) | 263 | loff_t pos, size_t size) |
263 | { | 264 | { |
264 | struct platform_device *pdev = | 265 | struct platform_device *pdev = |
@@ -272,7 +273,8 @@ static ssize_t stk17ta8_nvram_read(struct kobject *kobj, char *buf, | |||
272 | return count; | 273 | return count; |
273 | } | 274 | } |
274 | 275 | ||
275 | static ssize_t stk17ta8_nvram_write(struct kobject *kobj, char *buf, | 276 | static ssize_t stk17ta8_nvram_write(struct kobject *kobj, |
277 | struct bin_attribute *attr, char *buf, | ||
276 | loff_t pos, size_t size) | 278 | loff_t pos, size_t size) |
277 | { | 279 | { |
278 | struct platform_device *pdev = | 280 | struct platform_device *pdev = |