diff options
Diffstat (limited to 'rtc/rs5c372.c')
| -rw-r--r-- | rtc/rs5c372.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/rtc/rs5c372.c b/rtc/rs5c372.c index 87f38c42b..b56808b8b 100644 --- a/rtc/rs5c372.c +++ b/rtc/rs5c372.c @@ -73,7 +73,7 @@ static unsigned bcd2bin (uchar c);  static int setup_done = 0;  static int -rs5c372_readram(char *buf, int len) +rs5c372_readram(unsigned char *buf, int len)  {  	int ret; @@ -128,7 +128,7 @@ rs5c372_enable(void)  }  static void -rs5c372_convert_to_time(struct rtc_time *dt, char *buf) +rs5c372_convert_to_time(struct rtc_time *dt, unsigned char *buf)  {  	/* buf[0] is register 15 */  	dt->tm_sec = bcd2bin(buf[1]); |