[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20080213213015.GZ3383@cs181133002.pp.htv.fi>
Date: Wed, 13 Feb 2008 23:30:15 +0200
From: Adrian Bunk <bunk@...nel.org>
To: Andy Sharp <andy.sharp@...tor.com>, a.zummo@...ertech.it
Cc: rtc-linux@...glegroups.com, linux-kernel@...r.kernel.org
Subject: [2.6 patch] make ds1511_rtc_{read,set}_time() static
This patch makes the needlessly global ds1511_rtc_{read,set}_time()
static.
Signed-off-by: Adrian Bunk <bunk@...nel.org>
---
drivers/rtc/rtc-ds1511.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
2ca22d827507d309cfd7182b9360d1edca531072 diff --git a/drivers/rtc/rtc-ds1511.c b/drivers/rtc/rtc-ds1511.c
index d74b808..d82fd71 100644
--- a/drivers/rtc/rtc-ds1511.c
+++ b/drivers/rtc/rtc-ds1511.c
@@ -181,8 +181,7 @@ ds1511_wdog_disable(void)
* stupidly, some callers call with year unmolested;
* and some call with year = year - 1900. thanks.
*/
- int
-ds1511_rtc_set_time(struct device *dev, struct rtc_time *rtc_tm)
+static int ds1511_rtc_set_time(struct device *dev, struct rtc_time *rtc_tm)
{
u8 mon, day, dow, hrs, min, sec, yrs, cen;
unsigned int flags;
@@ -245,8 +244,7 @@ ds1511_rtc_set_time(struct device *dev, struct rtc_time *rtc_tm)
return 0;
}
- int
-ds1511_rtc_read_time(struct device *dev, struct rtc_time *rtc_tm)
+static int ds1511_rtc_read_time(struct device *dev, struct rtc_time *rtc_tm)
{
unsigned int century;
unsigned int flags;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists