@@ -83,9 +83,6 @@ static unsigned int sonic_debug = 1;
83
83
84
84
static int sonic_version_printed ;
85
85
86
- extern int mac_onboard_sonic_probe (struct net_device * dev );
87
- extern int mac_nubus_sonic_probe (struct net_device * dev );
88
-
89
86
/* For onboard SONIC */
90
87
#define ONBOARD_SONIC_REGISTERS 0x50F0A000
91
88
#define ONBOARD_SONIC_PROM_BASE 0x50f08000
@@ -170,7 +167,7 @@ static int macsonic_close(struct net_device* dev)
170
167
return err ;
171
168
}
172
169
173
- int __init macsonic_init (struct net_device * dev )
170
+ static int __init macsonic_init (struct net_device * dev )
174
171
{
175
172
struct sonic_local * lp = netdev_priv (dev );
176
173
@@ -218,7 +215,7 @@ int __init macsonic_init(struct net_device* dev)
218
215
return 0 ;
219
216
}
220
217
221
- int __init mac_onboard_sonic_ethernet_addr (struct net_device * dev )
218
+ static int __init mac_onboard_sonic_ethernet_addr (struct net_device * dev )
222
219
{
223
220
struct sonic_local * lp = netdev_priv (dev );
224
221
const int prom_addr = ONBOARD_SONIC_PROM_BASE ;
@@ -284,7 +281,7 @@ int __init mac_onboard_sonic_ethernet_addr(struct net_device* dev)
284
281
} else return 0 ;
285
282
}
286
283
287
- int __init mac_onboard_sonic_probe (struct net_device * dev )
284
+ static int __init mac_onboard_sonic_probe (struct net_device * dev )
288
285
{
289
286
/* Bwahahaha */
290
287
static int once_is_more_than_enough ;
@@ -405,9 +402,9 @@ int __init mac_onboard_sonic_probe(struct net_device* dev)
405
402
return macsonic_init (dev );
406
403
}
407
404
408
- int __init mac_nubus_sonic_ethernet_addr (struct net_device * dev ,
409
- unsigned long prom_addr ,
410
- int id )
405
+ static int __init mac_nubus_sonic_ethernet_addr (struct net_device * dev ,
406
+ unsigned long prom_addr ,
407
+ int id )
411
408
{
412
409
int i ;
413
410
for (i = 0 ; i < 6 ; i ++ )
@@ -420,7 +417,7 @@ int __init mac_nubus_sonic_ethernet_addr(struct net_device* dev,
420
417
return 0 ;
421
418
}
422
419
423
- int __init macsonic_ident (struct nubus_dev * ndev )
420
+ static int __init macsonic_ident (struct nubus_dev * ndev )
424
421
{
425
422
if (ndev -> dr_hw == NUBUS_DRHW_ASANTE_LC &&
426
423
ndev -> dr_sw == NUBUS_DRSW_SONIC_LC )
@@ -445,7 +442,7 @@ int __init macsonic_ident(struct nubus_dev* ndev)
445
442
return -1 ;
446
443
}
447
444
448
- int __init mac_nubus_sonic_probe (struct net_device * dev )
445
+ static int __init mac_nubus_sonic_probe (struct net_device * dev )
449
446
{
450
447
static int slots ;
451
448
struct nubus_dev * ndev = NULL ;
0 commit comments