mirror of
https://github.com/ipxe/ipxe
synced 2025-12-22 21:11:03 +03:00
Symbol errors caught by symcheck.pl
This commit is contained in:
@@ -311,7 +311,7 @@ static const char * t509_name ( struct bus_dev *bus_dev __unused ) {
|
|||||||
* T509 bus operations table
|
* T509 bus operations table
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
struct bus_driver t509_driver __bus_driver = {
|
static struct bus_driver t509_driver __bus_driver = {
|
||||||
.next_location = t509_next_location,
|
.next_location = t509_next_location,
|
||||||
.fill_device = t509_fill_device,
|
.fill_device = t509_fill_device,
|
||||||
.check_driver = t509_check_driver,
|
.check_driver = t509_check_driver,
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ static void t3c515_wait(unsigned int nticks)
|
|||||||
#define s16 signed short
|
#define s16 signed short
|
||||||
#define s32 signed long
|
#define s32 signed long
|
||||||
static int if_port;
|
static int if_port;
|
||||||
struct corkscrew_private *vp;
|
static struct corkscrew_private *vp;
|
||||||
/* Brought directly from 3c515.c by Becker */
|
/* Brought directly from 3c515.c by Becker */
|
||||||
#define CORKSCREW 1
|
#define CORKSCREW 1
|
||||||
|
|
||||||
|
|||||||
@@ -327,7 +327,7 @@ static int get_e ( uint16_t ioaddr, int offset ) {
|
|||||||
return (inw(ioaddr + EP_W0_EEPROM_DATA));
|
return (inw(ioaddr + EP_W0_EEPROM_DATA));
|
||||||
}
|
}
|
||||||
|
|
||||||
struct nic_operations t509_operations = {
|
static struct nic_operations t509_operations = {
|
||||||
.connect = dummy_connect,
|
.connect = dummy_connect,
|
||||||
.poll = t509_poll,
|
.poll = t509_poll,
|
||||||
.transmit = t509_transmit,
|
.transmit = t509_transmit,
|
||||||
|
|||||||
Reference in New Issue
Block a user