summaryrefslogtreecommitdiffstats
path: root/src/include/pc80/mc146818rtc.h
diff options
context:
space:
mode:
authorZheng Bao <fishbaozi@gmail.com>2012-11-09 19:55:04 +0800
committerAnton Kochkov <anton.kochkov@gmail.com>2012-11-09 15:26:22 +0100
commit0e6d0edccea45c4dd8e3d7af25b3667330433699 (patch)
tree22090bada90e29d315cff4a0bb489ad8feb71916 /src/include/pc80/mc146818rtc.h
parent094920ddd327149e1f513bca413e536806b69f9e (diff)
downloadcoreboot-0e6d0edccea45c4dd8e3d7af25b3667330433699.tar.gz
coreboot-0e6d0edccea45c4dd8e3d7af25b3667330433699.tar.bz2
coreboot-0e6d0edccea45c4dd8e3d7af25b3667330433699.zip
mc146818rtc: Remove the hyphen to build on NetBSD and Darwin
http://netbsd.gw.com/cgi-bin/man-cgi?date++NetBSD-current The NetBSD manual tells us the date in NetBSD doesn't take any flags to enable or disable padding in the format. By default, date pads numeric fields with zeroes. This will convert the number to octal one. So add "0x" to convert it to BCD directly. Change-Id: Icd44312acf01b8232f1da1fbaa70630d09007b40 Signed-off-by: Zheng Bao <zheng.bao@amd.com> Signed-off-by: zbao <fishbaozi@gmail.com> Reviewed-on: http://review.coreboot.org/1804 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
Diffstat (limited to 'src/include/pc80/mc146818rtc.h')
-rw-r--r--src/include/pc80/mc146818rtc.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/pc80/mc146818rtc.h b/src/include/pc80/mc146818rtc.h
index f0d58d82d644..31322ea5283f 100644
--- a/src/include/pc80/mc146818rtc.h
+++ b/src/include/pc80/mc146818rtc.h
@@ -63,8 +63,6 @@
# define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */
# define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */
-#define RTC_TO_BCD(value) (((value / 10) << 4) | (value % 10))
-
/**********************************************************************/
#define RTC_INTR_FLAGS RTC_REG_C
/* caution - cleared by read */