diff options
Diffstat (limited to 'drivers/net/ns8382x.c')
-rw-r--r-- | drivers/net/ns8382x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ns8382x.c b/drivers/net/ns8382x.c index c292abad07..d79872af09 100644 --- a/drivers/net/ns8382x.c +++ b/drivers/net/ns8382x.c @@ -252,7 +252,7 @@ static unsigned char rxb[NUM_RX_DESC * RX_BUF_SIZE] static int mdio_read(struct eth_device *dev, int phy_id, int addr); static void mdio_write(struct eth_device *dev, int phy_id, int addr, int value); static void mdio_sync(struct eth_device *dev, u32 offset); -static int ns8382x_init(struct eth_device *dev, bd_t * bis); +static int ns8382x_init(struct eth_device *dev, struct bd_info * bis); static void ns8382x_reset(struct eth_device *dev); static void ns8382x_init_rxfilter(struct eth_device *dev); static void ns8382x_init_txd(struct eth_device *dev); @@ -304,7 +304,7 @@ OUTL(struct eth_device *dev, int command, u_long addr) */ int -ns8382x_initialize(bd_t * bis) +ns8382x_initialize(struct bd_info * bis) { pci_dev_t devno; int card_number = 0; @@ -530,7 +530,7 @@ mdio_write(struct eth_device *dev, int phy_id, int addr, int value) */ static int -ns8382x_init(struct eth_device *dev, bd_t * bis) +ns8382x_init(struct eth_device *dev, struct bd_info * bis) { u32 config; |