Home
last modified time | relevance | path

Searched refs:BCD_TO_BIN (Results 1 – 1 of 1) sorted by relevance

/sys/dev/x86/
Drtc.c81 #define BCD_TO_BIN(_B) ((_B & 0x0F) + ((_B >> 4) * 10)) in RTC_ReadTime() macro
82 tm.sec = BCD_TO_BIN(tm.sec); in RTC_ReadTime()
83 tm.min = BCD_TO_BIN(tm.min); in RTC_ReadTime()
84 tm.hour = BCD_TO_BIN((tm.hour & 0x7F)); in RTC_ReadTime()
85 tm.wday = BCD_TO_BIN(tm.wday); in RTC_ReadTime()
86 tm.mday = BCD_TO_BIN(tm.mday); in RTC_ReadTime()
87 tm.month = BCD_TO_BIN(tm.month); in RTC_ReadTime()
88 tm.year = BCD_TO_BIN(tm.year); in RTC_ReadTime()