diff options
Diffstat (limited to 'drivers/net/3c523.c')
| -rw-r--r-- | drivers/net/3c523.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/net/3c523.c b/drivers/net/3c523.c index beed4fa10c6e..8c70686d43a1 100644 --- a/drivers/net/3c523.c +++ b/drivers/net/3c523.c | |||
| @@ -99,7 +99,6 @@ | |||
| 99 | #include <linux/errno.h> | 99 | #include <linux/errno.h> | 
| 100 | #include <linux/ioport.h> | 100 | #include <linux/ioport.h> | 
| 101 | #include <linux/skbuff.h> | 101 | #include <linux/skbuff.h> | 
| 102 | #include <linux/slab.h> | ||
| 103 | #include <linux/interrupt.h> | 102 | #include <linux/interrupt.h> | 
| 104 | #include <linux/delay.h> | 103 | #include <linux/delay.h> | 
| 105 | #include <linux/mca-legacy.h> | 104 | #include <linux/mca-legacy.h> | 
| @@ -625,7 +624,7 @@ static int init586(struct net_device *dev) | |||
| 625 | volatile struct iasetup_cmd_struct *ias_cmd; | 624 | volatile struct iasetup_cmd_struct *ias_cmd; | 
| 626 | volatile struct tdr_cmd_struct *tdr_cmd; | 625 | volatile struct tdr_cmd_struct *tdr_cmd; | 
| 627 | volatile struct mcsetup_cmd_struct *mc_cmd; | 626 | volatile struct mcsetup_cmd_struct *mc_cmd; | 
| 628 | struct dev_mc_list *dmi; | 627 | struct netdev_hw_addr *ha; | 
| 629 | int num_addrs = netdev_mc_count(dev); | 628 | int num_addrs = netdev_mc_count(dev); | 
| 630 | 629 | ||
| 631 | ptr = (void *) ((char *) p->scb + sizeof(struct scb_struct)); | 630 | ptr = (void *) ((char *) p->scb + sizeof(struct scb_struct)); | 
| @@ -788,8 +787,9 @@ static int init586(struct net_device *dev) | |||
| 788 | mc_cmd->cmd_link = 0xffff; | 787 | mc_cmd->cmd_link = 0xffff; | 
| 789 | mc_cmd->mc_cnt = num_addrs * 6; | 788 | mc_cmd->mc_cnt = num_addrs * 6; | 
| 790 | i = 0; | 789 | i = 0; | 
| 791 | netdev_for_each_mc_addr(dmi, dev) | 790 | netdev_for_each_mc_addr(ha, dev) | 
| 792 | memcpy((char *) mc_cmd->mc_list[i++], dmi->dmi_addr, 6); | 791 | memcpy((char *) mc_cmd->mc_list[i++], | 
| 792 | ha->addr, 6); | ||
| 793 | p->scb->cbl_offset = make16(mc_cmd); | 793 | p->scb->cbl_offset = make16(mc_cmd); | 
| 794 | p->scb->cmd = CUC_START; | 794 | p->scb->cmd = CUC_START; | 
| 795 | elmc_id_attn586(); | 795 | elmc_id_attn586(); | 
