From a1efd7a98a96db2083d252e8b81d8e5ce1aa275f Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 3 Dec 1999 14:48:27 +0000 Subject: Made to compile on other CPU families. --- c/src/libchip/network/dec21140.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'c/src/libchip') diff --git a/c/src/libchip/network/dec21140.c b/c/src/libchip/network/dec21140.c index 4b3dbd3c24..cf8bd72936 100644 --- a/c/src/libchip/network/dec21140.c +++ b/c/src/libchip/network/dec21140.c @@ -10,6 +10,23 @@ * $Id$ */ +#include + +/* + * This driver only supports architectures with the new style + * exception processing. The following checks try to keep this + * from being compiled on systems which can't support this driver. + */ + +#if defined(__i386) +#define DEC21140_SUPPORTED +#endif + +#if defined(__PPC) && (defined(mpc604) || defined(mpc750)) +#define DEC21140_SUPPORTED +#endif + +#if defined(DEC21140_SUPPORTED) #include #if defined(i386) #include @@ -901,4 +918,5 @@ rtems_dec21140_driver_attach (struct rtems_bsdnet_ifconfig *config) return 1; }; +#endif /* DEC21140_SUPPORTED */ -- cgit v1.2.3