2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-18 21:43:14 +00:00

Symbol errors caught by symcheck.pl

This commit is contained in:
Michael Brown 2005-04-23 14:45:37 +00:00
parent 2da3b7a38f
commit 9dc7ebc152
3 changed files with 3 additions and 3 deletions

View 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,

View 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

View 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,