Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 183455
b: refs/heads/master
c: 596a530
h: refs/heads/master
i:
  183453: 757b19a
  183451: 6ab366f
  183447: 3a2046d
  183439: 837e4f4
  183423: 8fa63ce
v: v3
  • Loading branch information
hartleys authored and David S. Miller committed Jan 8, 2010
1 parent a0f44fe commit 49e55b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 69d279eaf8f23c7d7cfc0e879c629a92bfc3e3e0
refs/heads/master: 596a530bb3af746d33ea2910a0569b9825279979
19 changes: 3 additions & 16 deletions trunk/drivers/net/skfp/skfddi.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,13 +435,7 @@ static int skfp_driver_init(struct net_device *dev)
goto fail;
}
read_address(smc, NULL);
pr_debug(KERN_INFO "HW-Addr: %02x %02x %02x %02x %02x %02x\n",
smc->hw.fddi_canon_addr.a[0],
smc->hw.fddi_canon_addr.a[1],
smc->hw.fddi_canon_addr.a[2],
smc->hw.fddi_canon_addr.a[3],
smc->hw.fddi_canon_addr.a[4],
smc->hw.fddi_canon_addr.a[5]);
pr_debug(KERN_INFO "HW-Addr: %pMF\n", smc->hw.fddi_canon_addr.a);
memcpy(dev->dev_addr, smc->hw.fddi_canon_addr.a, 6);

smt_reset_defaults(smc, 0);
Expand Down Expand Up @@ -890,15 +884,8 @@ static void skfp_ctl_set_multicast_list_wo_lock(struct net_device *dev)
(struct fddi_addr *)dmi->dmi_addr,
1);

pr_debug(KERN_INFO "ENABLE MC ADDRESS:");
pr_debug(" %02x %02x %02x ",
dmi->dmi_addr[0],
dmi->dmi_addr[1],
dmi->dmi_addr[2]);
pr_debug("%02x %02x %02x\n",
dmi->dmi_addr[3],
dmi->dmi_addr[4],
dmi->dmi_addr[5]);
pr_debug(KERN_INFO "ENABLE MC ADDRESS: %pMF\n",
dmi->dmi_addr);
dmi = dmi->next;
} // for

Expand Down

0 comments on commit 49e55b8

Please sign in to comment.