aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorNick Bowler <nbowler@elliptictech.com>2012-07-30 17:41:57 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-07-30 20:25:19 -0400
commit0a25bf40d8ea9aeb8412666a7bc8ab95b4cddcb1 (patch)
tree6ba221de466c2f4b8efb2f886ad1ddcc6d580459 /drivers/rtc
parent007def046711479f3d19bec4016b65fd73deed6c (diff)
drivers/rtc/rtc-pcf8563.c: set owner field in driver struct
The owner member is supposed to be set to the module implementing the device driver, i.e., THIS_MODULE. This enables the appropriate module link in sysfs. Signed-off-by: Nick Bowler <nbowler@elliptictech.com> Cc: Alessandro Zummo <a.zummo@towertech.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-pcf8563.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c
index 97a3284bb7c6..24a9d6a9c72d 100644
--- a/drivers/rtc/rtc-pcf8563.c
+++ b/drivers/rtc/rtc-pcf8563.c
@@ -288,6 +288,7 @@ MODULE_DEVICE_TABLE(i2c, pcf8563_id);
288static struct i2c_driver pcf8563_driver = { 288static struct i2c_driver pcf8563_driver = {
289 .driver = { 289 .driver = {
290 .name = "rtc-pcf8563", 290 .name = "rtc-pcf8563",
291 .owner = THIS_MODULE,
291 }, 292 },
292 .probe = pcf8563_probe, 293 .probe = pcf8563_probe,
293 .remove = pcf8563_remove, 294 .remove = pcf8563_remove,