Browse Source

Symbol errors caught by symcheck.pl

tags/v0.9.3
Michael Brown 20 years ago
parent
commit
9dc7ebc152
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      src/drivers/net/3c509.c
  2. 1
    1
      src/drivers/net/3c515.c
  3. 1
    1
      src/drivers/net/3c5x9.c

+ 1
- 1
src/drivers/net/3c509.c View File

311
  * T509 bus operations table
311
  * T509 bus operations table
312
  *
312
  *
313
  */
313
  */
314
-struct bus_driver t509_driver __bus_driver = {
314
+static struct bus_driver t509_driver __bus_driver = {
315
 	.next_location	= t509_next_location,
315
 	.next_location	= t509_next_location,
316
 	.fill_device	= t509_fill_device,
316
 	.fill_device	= t509_fill_device,
317
 	.check_driver	= t509_check_driver,
317
 	.check_driver	= t509_check_driver,

+ 1
- 1
src/drivers/net/3c515.c View File

66
 #define s16 signed short
66
 #define s16 signed short
67
 #define s32 signed long
67
 #define s32 signed long
68
 static int if_port;
68
 static int if_port;
69
-struct corkscrew_private *vp;
69
+static struct corkscrew_private *vp;
70
 /* Brought directly from 3c515.c by Becker */
70
 /* Brought directly from 3c515.c by Becker */
71
 #define CORKSCREW 1
71
 #define CORKSCREW 1
72
 
72
 

+ 1
- 1
src/drivers/net/3c5x9.c View File

327
 	return (inw(ioaddr + EP_W0_EEPROM_DATA));
327
 	return (inw(ioaddr + EP_W0_EEPROM_DATA));
328
 }
328
 }
329
 
329
 
330
-struct nic_operations t509_operations = {
330
+static struct nic_operations t509_operations = {
331
 	.connect	= dummy_connect,
331
 	.connect	= dummy_connect,
332
 	.poll		= t509_poll,
332
 	.poll		= t509_poll,
333
 	.transmit	= t509_transmit,
333
 	.transmit	= t509_transmit,

Loading…
Cancel
Save