forked from Imagelibrary/rtems
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:
@@ -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>
|
||||
|
||||
PR 707/make_build
|
||||
|
||||
@@ -25,7 +25,6 @@
|
||||
#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))
|
||||
|
||||
Reference in New Issue
Block a user