summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-11-10 22:27:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-11-10 22:27:08 +0000
commit0b929fe94b6d94c3f2201159cf0e8ba6caee63d9 (patch)
tree55fed94c4389ea2fba125ab0fd7d4ae66888c620
parent2004-11-10 Richard Campbell <richard.campbell@oarcorp.com> (diff)
downloadrtems-0b929fe94b6d94c3f2201159cf0e8ba6caee63d9.tar.bz2
2004-11-10 Joel Sherrill <joel@oarcorp.com>
PR 715/bsps * rtc/mc146818a.c: Delete include of bsp.h
-rw-r--r--c/src/libchip/ChangeLog5
-rw-r--r--c/src/libchip/rtc/mc146818a.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/c/src/libchip/ChangeLog b/c/src/libchip/ChangeLog
index e89eb00408..b6a004d004 100644
--- a/c/src/libchip/ChangeLog
+++ b/c/src/libchip/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-10 Joel Sherrill <joel@oarcorp.com>
+
+ PR 715/bsps
+ * rtc/mc146818a.c: Delete include of bsp.h
+
2004-10-13 Eric Norum <norume@aps.anl.gov>
PR 688/bsps
diff --git a/c/src/libchip/rtc/mc146818a.c b/c/src/libchip/rtc/mc146818a.c
index 396f2cf99f..f0158b1251 100644
--- a/c/src/libchip/rtc/mc146818a.c
+++ b/c/src/libchip/rtc/mc146818a.c
@@ -22,10 +22,10 @@
*
* $Id$
*/
+
#include <rtems.h>
#include <libchip/rtc.h>
#include <libchip/mc146818a.h>
-#include <bsp.h>
#define From_BCD( _x ) ((((_x) >> 4) * 10) + ((_x) & 0x0F))
#define To_BCD( _x ) ((((_x) / 10) << 4) + ((_x) % 10))