2004-11-10 Joel Sherrill <joel@oarcorp.com>

PR 715/bsps
	* rtc/mc146818a.c: Delete include of bsp.h
This commit is contained in:
Joel Sherrill
2004-11-10 22:27:08 +00:00
parent 5dba517449
commit 0b929fe94b
2 changed files with 6 additions and 1 deletions

View File

@@ -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> 2004-10-13 Eric Norum <norume@aps.anl.gov>
PR 688/bsps PR 688/bsps

View File

@@ -22,10 +22,10 @@
* *
* $Id$ * $Id$
*/ */
#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))