Stripped references to variables in C code.

pull/1/head
Michael Brown 2005-04-13 13:48:26 +00:00
parent e294a1ddce
commit 0dc98309b2
1 changed files with 1 additions and 7 deletions

View File

@ -53,12 +53,6 @@
#define EP_ID_PORT 0x100 #define EP_ID_PORT 0x100
#endif #endif
/*
* some macros to acces long named fields
*/
#define IS_BASE (eth_nic_base)
#define BASE (eth_nic_base)
/* /*
* Commands to read/write EEPROM trough EEPROM command register (Window 0, * Commands to read/write EEPROM trough EEPROM command register (Window 0,
* Offset 0xa) * Offset 0xa)
@ -75,7 +69,7 @@
* Some short functions, worth to let them be a macro * Some short functions, worth to let them be a macro
*/ */
#define is_eeprom_busy(b) (inw((b)+EP_W0_EEPROM_COMMAND)&EEPROM_BUSY) #define is_eeprom_busy(b) (inw((b)+EP_W0_EEPROM_COMMAND)&EEPROM_BUSY)
#define GO_WINDOW(x) outw(WINDOW_SELECT|(x), BASE+EP_COMMAND) #define GO_WINDOW(b,x) outw(WINDOW_SELECT|(x), (b)+EP_COMMAND)
/************************************************************************** /**************************************************************************
* *