forked from Imagelibrary/rtems
2004-11-10 Joel Sherrill <joel@oarcorp.com>
PR 715/bsps * rtc/mc146818a.c: Delete include of bsp.h
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user