diff options
Diffstat (limited to 'drivers/net/sun3_82586.c')
| -rw-r--r-- | drivers/net/sun3_82586.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/sun3_82586.c b/drivers/net/sun3_82586.c index 2f6a760e5f21..31ab4ab0796f 100644 --- a/drivers/net/sun3_82586.c +++ b/drivers/net/sun3_82586.c | |||
| @@ -33,7 +33,6 @@ static int fifo=0x8; /* don't change */ | |||
| 33 | #include <linux/string.h> | 33 | #include <linux/string.h> |
| 34 | #include <linux/errno.h> | 34 | #include <linux/errno.h> |
| 35 | #include <linux/ioport.h> | 35 | #include <linux/ioport.h> |
| 36 | #include <linux/slab.h> | ||
| 37 | #include <linux/interrupt.h> | 36 | #include <linux/interrupt.h> |
| 38 | #include <linux/delay.h> | 37 | #include <linux/delay.h> |
| 39 | #include <linux/init.h> | 38 | #include <linux/init.h> |
| @@ -413,7 +412,7 @@ static int init586(struct net_device *dev) | |||
| 413 | volatile struct iasetup_cmd_struct *ias_cmd; | 412 | volatile struct iasetup_cmd_struct *ias_cmd; |
| 414 | volatile struct tdr_cmd_struct *tdr_cmd; | 413 | volatile struct tdr_cmd_struct *tdr_cmd; |
| 415 | volatile struct mcsetup_cmd_struct *mc_cmd; | 414 | volatile struct mcsetup_cmd_struct *mc_cmd; |
| 416 | struct dev_mc_list *dmi; | 415 | struct netdev_hw_addr *ha; |
| 417 | int num_addrs=netdev_mc_count(dev); | 416 | int num_addrs=netdev_mc_count(dev); |
| 418 | 417 | ||
| 419 | ptr = (void *) ((char *)p->scb + sizeof(struct scb_struct)); | 418 | ptr = (void *) ((char *)p->scb + sizeof(struct scb_struct)); |
| @@ -537,9 +536,9 @@ static int init586(struct net_device *dev) | |||
| 537 | mc_cmd->mc_cnt = swab16(num_addrs * 6); | 536 | mc_cmd->mc_cnt = swab16(num_addrs * 6); |
| 538 | 537 | ||
| 539 | i = 0; | 538 | i = 0; |
| 540 | netdev_for_each_mc_addr(dmi, dev) | 539 | netdev_for_each_mc_addr(ha, dev) |
| 541 | memcpy((char *) mc_cmd->mc_list[i++], | 540 | memcpy((char *) mc_cmd->mc_list[i++], |
| 542 | dmi->dmi_addr, ETH_ALEN); | 541 | ha->addr, ETH_ALEN); |
| 543 | 542 | ||
| 544 | p->scb->cbl_offset = make16(mc_cmd); | 543 | p->scb->cbl_offset = make16(mc_cmd); |
| 545 | p->scb->cmd_cuc = CUC_START; | 544 | p->scb->cmd_cuc = CUC_START; |
