This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

i82559 tweak


Index: devs/eth/intel/i82559/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/devs/eth/intel/i82559/current/ChangeLog,v
retrieving revision 1.18
diff -u -p -5 -r1.18 ChangeLog
--- devs/eth/intel/i82559/current/ChangeLog	4 Jan 2003 03:30:05 -0000	1.18
+++ devs/eth/intel/i82559/current/ChangeLog	12 Feb 2003 13:51:03 -0000
@@ -1,5 +1,10 @@
+2003-02-12  Mark Salter  <msalter@redhat.com>
+
+	* src/if_i82559.c: Remove restriction preventing combination of
+	*_GET_ESA and *_HAS_EEPROM.
+
 2003-01-03  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/if_i82559.c: 
 	* cdl/intel_i82559_eth_drivers.cdl: Allow finer control over
 	debug (chatter) by making control booldata.
Index: devs/eth/intel/i82559/current/src/if_i82559.c
===================================================================
RCS file: /cvs/ecos/ecos/packages/devs/eth/intel/i82559/current/src/if_i82559.c,v
retrieving revision 1.18
diff -u -p -5 -r1.18 if_i82559.c
--- devs/eth/intel/i82559/current/src/if_i82559.c	4 Jan 2003 03:30:06 -0000	1.18
+++ devs/eth/intel/i82559/current/src/if_i82559.c	12 Feb 2003 13:51:07 -0000
@@ -6,12 +6,11 @@
 //
 //==========================================================================
 //####ECOSGPLCOPYRIGHTBEGIN####
 // -------------------------------------------
 // This file is part of eCos, the Embedded Configurable Operating System.
-// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
-// Copyright (C) 2002, 2003 Gary Thomas
+// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Red Hat, Inc.
 //
 // eCos is free software; you can redistribute it and/or modify it under
 // the terms of the GNU General Public License as published by the Free
 // Software Foundation; either version 2 or (at your option) any later version.
 //
@@ -197,25 +196,13 @@
 #ifdef CYGHWR_DEVS_ETH_INTEL_I82559_HAS_NO_EEPROM
 #error This platform has no EEPROM, yet WRITE_EEPROM is enabled
 #endif
 #endif
 
-#ifdef CYGHWR_DEVS_ETH_INTEL_I82559_GET_ESA
-#ifndef CYGHWR_DEVS_ETH_INTEL_I82559_HAS_NO_EEPROM
-#error This platform has EEPROM, yet external ..._GET_ESA is defined
-#endif
-#endif
-
 #ifdef CYGHWR_DEVS_ETH_INTEL_I82559_HAS_NO_EEPROM
 #ifdef CYGHWR_DEVS_ETH_INTEL_I82559_HAS_ONE_EEPROM
 #error This platform has no EEPROM, yet it also HAS_ONE_EEPROM
-#endif
-#endif
-
-#ifdef CYGHWR_DEVS_ETH_INTEL_I82559_GET_ESA
-#ifdef CYGHWR_DEVS_ETH_INTEL_I82559_HAS_ONE_EEPROM
-#error This platform has one EEPROM, yet external ..._GET_ESA is defined
 #endif
 #endif
 
 // ------------------------------------------------------------------------
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]