2001-09-27 Joel Sherrill <joel@OARcorp.com>

* include/bsp.h: Renamed delay() to rtems_bsp_delay().
This commit is contained in:
Joel Sherrill
2001-09-28 13:28:11 +00:00
parent cbb5fc7072
commit cf28209062
50 changed files with 129 additions and 27 deletions

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -66,7 +66,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ \ { \
} }

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -66,7 +66,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ \ { \
} }

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -60,7 +60,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp = 0; /* initialized to avoid warning */ \ register rtems_unsigned32 _tmp = 0; /* initialized to avoid warning */ \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -72,7 +72,7 @@ extern "C" {
*/ */
extern void Clock_delay(rtems_unsigned32 microseconds); extern void Clock_delay(rtems_unsigned32 microseconds);
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
Clock_delay(microseconds); Clock_delay(microseconds);
/* /*

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'PREINSTALL_FILES ='. * include/Makefile.am: Use 'PREINSTALL_FILES ='.

View File

@@ -72,7 +72,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( _microseconds ) \ #define rtems_bsp_delay( _microseconds ) \
{ \ { \
rtems_unsigned32 _counter; \ rtems_unsigned32 _counter; \
\ \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -166,7 +166,7 @@ extern int rtems_dec21140_driver_attach(struct rtems_bsdnet_ifconfig *, int);
| Simple spin delay in microsecond units for device drivers. | Simple spin delay in microsecond units for device drivers.
| This is very dependent on the clock speed of the target. | This is very dependent on the clock speed of the target.
+--------------------------------------------------------------------------*/ +--------------------------------------------------------------------------*/
#define delay(_microseconds) \ #define rtems_bsp_delay(_microseconds) \
{ \ { \
rtems_unsigned32 _cnt = _microseconds; \ rtems_unsigned32 _cnt = _microseconds; \
asm volatile ("0: nop; mov %0,%0; loop 0b" : "=c"(_cnt) : "0"(_cnt)); \ asm volatile ("0: nop; mov %0,%0; loop 0b" : "=c"(_cnt) : "0"(_cnt)); \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'PREINSTALL_FILES ='. * include/Makefile.am: Use 'PREINSTALL_FILES ='.

View File

@@ -115,7 +115,7 @@ extern void Wait_X_ms (unsigned);
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( _microseconds ) \ #define rtems_bsp_delay( _microseconds ) \
{ \ { \
rtems_unsigned32 _counter; \ rtems_unsigned32 _counter; \
\ \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -71,7 +71,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp = 0; /* initialized to avoid warning */ \ register rtems_unsigned32 _tmp = 0; /* initialized to avoid warning */ \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -85,7 +85,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -70,7 +70,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -70,7 +70,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -67,7 +67,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -71,7 +71,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -85,7 +85,7 @@ extern int rtems_scc1_driver_attach (struct rtems_bsdnet_ifconfig *config, int a
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -70,7 +70,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -67,7 +67,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -81,7 +81,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp=123; \ register rtems_unsigned32 _tmp=123; \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -64,7 +64,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ register rtems_unsigned32 _delay=(microseconds); \ { register rtems_unsigned32 _delay=(microseconds); \
register rtems_unsigned32 _tmp = 0; /* initialized to avoid warning */ \ register rtems_unsigned32 _tmp = 0; /* initialized to avoid warning */ \
asm volatile( "0: \ asm volatile( "0: \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -80,9 +80,10 @@ extern unsigned32 mips_get_timer( void );
* by code in the delay macro that is necessary for 64 bit mode. * by code in the delay macro that is necessary for 64 bit mode.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ \ { \
unsigned32 _end_clock = mips_get_timer() + microseconds * CLOCKS_PER_MICROSECOND; \ unsigned32 _end_clock = \
mips_get_timer() + microseconds * CLOCKS_PER_MICROSECOND; \
_end_clock %= 0x100000000; /* make sure result is 32 bits */ \ _end_clock %= 0x100000000; /* make sure result is 32 bits */ \
\ \
/* handle timer overflow, if necessary */ \ /* handle timer overflow, if necessary */ \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'TMPINSTALL_FILES ='. * include/Makefile.am: Use 'TMPINSTALL_FILES ='.

View File

@@ -80,9 +80,10 @@ extern unsigned32 mips_get_timer( void );
* by code in the delay macro that is necessary for 64 bit mode. * by code in the delay macro that is necessary for 64 bit mode.
*/ */
#define delay( microseconds ) \ #define rtems_bsp_delay( microseconds ) \
{ \ { \
unsigned32 _end_clock = mips_get_timer() + microseconds * CLOCKS_PER_MICROSECOND; \ unsigned32 _end_clock = \
mips_get_timer() + microseconds * CLOCKS_PER_MICROSECOND; \
_end_clock %= 0x100000000; /* make sure result is 32 bits */ \ _end_clock %= 0x100000000; /* make sure result is 32 bits */ \
\ \
/* handle timer overflow, if necessary */ \ /* handle timer overflow, if necessary */ \

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'PREINSTALL_FILES ='. * include/Makefile.am: Use 'PREINSTALL_FILES ='.

View File

@@ -92,7 +92,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) CPU_delay(microseconds) #define rtems_bsp_delay( microseconds ) CPU_delay(microseconds)
#define sh_delay( microseconds ) CPU_delay(microseconds) #define sh_delay( microseconds ) CPU_delay(microseconds)
/* /*

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'PREINSTALL_FILES ='. * include/Makefile.am: Use 'PREINSTALL_FILES ='.

View File

@@ -108,7 +108,7 @@ extern "C" {
* This is very dependent on the clock speed of the target. * This is very dependent on the clock speed of the target.
*/ */
#define delay( microseconds ) CPU_delay(microseconds) #define rtems_bsp_delay( microseconds ) CPU_delay(microseconds)
#define sh_delay( microseconds ) CPU_delay( microseconds ) #define sh_delay( microseconds ) CPU_delay( microseconds )

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'CLEANFILES ='. * include/Makefile.am: Use 'CLEANFILES ='.

View File

@@ -82,7 +82,7 @@ extern "C" {
* FIXME: Not applicable with gdb's simulator * FIXME: Not applicable with gdb's simulator
* Kept for sourcecode compatibility with other sh-BSPs * Kept for sourcecode compatibility with other sh-BSPs
*/ */
#define delay( microseconds ) CPU_delay(microseconds) #define rtems_bsp_delay( microseconds ) CPU_delay(microseconds)
#define sh_delay( microseconds ) CPU_delay(microseconds) #define sh_delay( microseconds ) CPU_delay(microseconds)
/* /*

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'PREINSTALL_FILES ='. * include/Makefile.am: Use 'PREINSTALL_FILES ='.

View File

@@ -130,7 +130,7 @@ extern int rtems_erc32_sonic_driver_attach (struct rtems_bsdnet_ifconfig *config
extern void Clock_delay(rtems_unsigned32 microseconds); extern void Clock_delay(rtems_unsigned32 microseconds);
#define delay( microseconds ) Clock_delay(microseconds) #define rtems_bsp_delay( microseconds ) Clock_delay(microseconds)
/* Constants */ /* Constants */

View File

@@ -1,3 +1,7 @@
2001-09-27 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h: Renamed delay() to rtems_bsp_delay().
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Use 'PREINSTALL_FILES ='. * include/Makefile.am: Use 'PREINSTALL_FILES ='.

View File

@@ -123,7 +123,7 @@ extern "C" {
extern void Clock_delay(rtems_unsigned32 microseconds); extern void Clock_delay(rtems_unsigned32 microseconds);
#define delay( microseconds ) Clock_delay(microseconds) #define rtems_bsp_delay( microseconds ) Clock_delay(microseconds)
/* Constants */ /* Constants */