2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* network/dec21140.c: Reflect changes to powerpc's
	rtems/score/cpu.h. Use __PPC__ for gcc-3.x compliance.
This commit is contained in:
Joel Sherrill
2002-04-18 21:01:20 +00:00
parent a73a977d73
commit 7c4ef9cd7a
2 changed files with 7 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* network/dec21140.c: Reflect changes to powerpc's
rtems/score/cpu.h. Use __PPC__ for gcc-3.x compliance.
2002-04-11 Chris Johns <ccj@acm.org>
* network/rtems_bsdnet.h: To address PR59, added the drv_ctrl driver

View File

@@ -39,7 +39,7 @@
#define DEC21140_SUPPORTED
#endif
#if defined(__PPC) && (defined(mpc604) || defined(mpc750))
#if defined(__PPC__) && (defined(mpc604) || defined(mpc750))
#define DEC21140_SUPPORTED
#endif
@@ -48,7 +48,7 @@
#if defined(__i386__)
#include <pcibios.h>
#endif
#if defined(__PPC)
#if defined(__PPC__)
#include <bsp/pci.h>
#include <libcpu/byteorder.h>
#include <libcpu/io.h>
@@ -60,8 +60,6 @@
#include <rtems/error.h>
#include <rtems/rtems_bsdnet.h>
#include <libcpu/cpu.h>
#include <sys/param.h>
#include <sys/mbuf.h>