]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
Symbol errors caught by symcheck.pl
authorMichael Brown <mcb30@etherboot.org>
Sat, 23 Apr 2005 14:45:37 +0000 (14:45 +0000)
committerMichael Brown <mcb30@etherboot.org>
Sat, 23 Apr 2005 14:45:37 +0000 (14:45 +0000)
src/drivers/net/3c509.c
src/drivers/net/3c515.c
src/drivers/net/3c5x9.c

index bc21978f19b0bbdb79e1414eed8a81b42a6310f6..cc88c299f90d706edfb4aee0fefe634c9908db80 100644 (file)
@@ -311,7 +311,7 @@ static const char * t509_name ( struct bus_dev *bus_dev __unused ) {
  * T509 bus operations table
  *
  */
-struct bus_driver t509_driver __bus_driver = {
+static struct bus_driver t509_driver __bus_driver = {
        .next_location  = t509_next_location,
        .fill_device    = t509_fill_device,
        .check_driver   = t509_check_driver,
index 10157ad27459a23677edf0776942d0f106707da3..9edb3aab8a1287fa63402f1a865043e3053360f9 100644 (file)
@@ -66,7 +66,7 @@ static void t3c515_wait(unsigned int nticks)
 #define s16 signed short
 #define s32 signed long
 static int if_port;
-struct corkscrew_private *vp;
+static struct corkscrew_private *vp;
 /* Brought directly from 3c515.c by Becker */
 #define CORKSCREW 1
 
index 1e0fad80d8c969ff6213c18eccac9a27d2ebc7df..b2575bc0fac50f1a748386c3b6baad1b0e193778 100644 (file)
@@ -327,7 +327,7 @@ static int get_e ( uint16_t ioaddr, int offset ) {
        return (inw(ioaddr + EP_W0_EEPROM_DATA));
 }
 
-struct nic_operations t509_operations = {
+static struct nic_operations t509_operations = {
        .connect        = dummy_connect,
        .poll           = t509_poll,
        .transmit       = t509_transmit,