aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sbus/char/rtc.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/sbus/char/rtc.c')
-rw-r--r--drivers/sbus/char/rtc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/sbus/char/rtc.c b/drivers/sbus/char/rtc.c
index 49d1cd99d5ac..9b988baf0b51 100644
--- a/drivers/sbus/char/rtc.c
+++ b/drivers/sbus/char/rtc.c
@@ -67,7 +67,7 @@ struct rtc_time_generic {
67/* Retrieve the current date and time from the real time clock. */ 67/* Retrieve the current date and time from the real time clock. */
68static void get_rtc_time(struct rtc_time *t) 68static void get_rtc_time(struct rtc_time *t)
69{ 69{
70 void * __iomem regs = mstk48t02_regs; 70 void __iomem *regs = mstk48t02_regs;
71 u8 tmp; 71 u8 tmp;
72 72
73 spin_lock_irq(&mostek_lock); 73 spin_lock_irq(&mostek_lock);
@@ -94,7 +94,7 @@ static void get_rtc_time(struct rtc_time *t)
94/* Set the current date and time inthe real time clock. */ 94/* Set the current date and time inthe real time clock. */
95void set_rtc_time(struct rtc_time *t) 95void set_rtc_time(struct rtc_time *t)
96{ 96{
97 void * __iomem regs = mstk48t02_regs; 97 void __iomem *regs = mstk48t02_regs;
98 u8 tmp; 98 u8 tmp;
99 99
100 spin_lock_irq(&mostek_lock); 100 spin_lock_irq(&mostek_lock);
@@ -250,7 +250,7 @@ static int __init rtc_sun_init(void)
250 /* It is possible we are being driven by some other RTC chip 250 /* It is possible we are being driven by some other RTC chip
251 * and thus another RTC driver is handling things. 251 * and thus another RTC driver is handling things.
252 */ 252 */
253 if (mstk48t02_regs == 0) 253 if (!mstk48t02_regs)
254 return -ENODEV; 254 return -ENODEV;
255 255
256 error = misc_register(&rtc_dev); 256 error = misc_register(&rtc_dev);