diff options
Diffstat (limited to 'drivers/rtc/rs5c372.c')
| -rw-r--r-- | drivers/rtc/rs5c372.c | 14 | 
1 files changed, 0 insertions, 14 deletions
| diff --git a/drivers/rtc/rs5c372.c b/drivers/rtc/rs5c372.c index d6cd7c825..90bbb4efa 100644 --- a/drivers/rtc/rs5c372.c +++ b/drivers/rtc/rs5c372.c @@ -67,9 +67,6 @@ static unsigned int rtc_debug = DEBUG;  #define HOURS_24(n)	bcd2bin((n) & 0x3F) -static uchar bin2bcd (unsigned int n); -static unsigned bcd2bin (uchar c); -  static int setup_done = 0;  static int @@ -291,15 +288,4 @@ rtc_reset (void)  	return;  } -static unsigned int -bcd2bin (unsigned char n) -{ -	return ((((n >> 4) & 0x0F) * 10) + (n & 0x0F)); -} - -static unsigned char -bin2bcd (unsigned int n) -{ -	return (((n / 10) << 4) | (n % 10)); -}  #endif |