mirror of
https://github.com/ipxe/ipxe
synced 2025-12-12 23:15:10 +03:00
Automatically updated using
perl -pi -e 's/(_probe\s*\(\s*struct )dev \*.*?(\s*\);)/${1}dev *dev$2/' *.c
perl -pi -e 's/(_disable\s*\(\s*struct )dev \*.*?(\s*\);)/${1}nic *nic$2/' *.c
This commit is contained in:
@@ -172,13 +172,13 @@ static unsigned int cur_rx,cur_tx;
|
||||
static unsigned char tx_buffer[TX_BUF_SIZE] __attribute__((aligned(4)));
|
||||
static unsigned char rx_ring[RX_BUF_LEN+16] __attribute__((aligned(4)));
|
||||
|
||||
static int rtl8139_probe(struct dev *dev, struct pci_device *pci);
|
||||
static int rtl8139_probe(struct dev *dev);
|
||||
static int read_eeprom(struct nic *nic, int location, int addr_len);
|
||||
static void rtl_reset(struct nic *nic);
|
||||
static void rtl_transmit(struct nic *nic, const char *destaddr,
|
||||
unsigned int type, unsigned int len, const char *data);
|
||||
static int rtl_poll(struct nic *nic, int retrieve);
|
||||
static void rtl_disable(struct dev *);
|
||||
static void rtl_disable(struct nic *nic);
|
||||
static void rtl_irq(struct nic *nic, irq_action_t action);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user