2004-11-03 Ralf Corsepius <ralf_corsepius@rtems.org>

* libchip/rtc/mc146818a.c: Don't include <bsp.h>
	(Thanks to Lars Munch <lars@segv.dk> for catching this).
This commit is contained in:
Ralf Corsepius
2004-11-03 08:18:56 +00:00
parent 209e68dfbd
commit 1c3dfb4a8d
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2004-11-03 Ralf Corsepius <ralf_corsepius@rtems.org>
* libchip/rtc/mc146818a.c: Don't include <bsp.h>
(Thanks to Lars Munch <lars@segv.dk> for catching this).
2004-10-28 Ralf Corsepius <ralf_corsepius@rtems.org> 2004-10-28 Ralf Corsepius <ralf_corsepius@rtems.org>
PR 707/make_build PR 707/make_build

View File

@@ -25,7 +25,6 @@
#include <rtems.h> #include <rtems.h>
#include <libchip/rtc.h> #include <libchip/rtc.h>
#include <libchip/mc146818a.h> #include <libchip/mc146818a.h>
#include <bsp.h>
#define From_BCD( _x ) ((((_x) >> 4) * 10) + ((_x) & 0x0F)) #define From_BCD( _x ) ((((_x) >> 4) * 10) + ((_x) & 0x0F))
#define To_BCD( _x ) ((((_x) / 10) << 4) + ((_x) % 10)) #define To_BCD( _x ) ((((_x) / 10) << 4) + ((_x) % 10))