Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 150082
b: refs/heads/master
c: 698960a
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed May 3, 2009
1 parent a3a6e2a commit 8722e12
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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: d252a5e7b73026b3ba3c49940724292099e634f0
refs/heads/master: 698960a081bfcc3e2e0f556342d86405346d2edc
7 changes: 3 additions & 4 deletions trunk/drivers/net/ne2k-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,18 +374,17 @@ static int __devinit ne2k_pci_init_one (struct pci_dev *pdev,
dev->ethtool_ops = &ne2k_pci_ethtool_ops;
NS8390_init(dev, 0);

memcpy(dev->dev_addr, SA_prom, 6);
memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);

i = register_netdev(dev);
if (i)
goto err_out_free_netdev;

for(i = 0; i < 6; i++)
dev->dev_addr[i] = SA_prom[i];
printk("%s: %s found at %#lx, IRQ %d, %pM.\n",
dev->name, pci_clone_list[chip_idx].name, ioaddr, dev->irq,
dev->dev_addr);

memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);

return 0;

err_out_free_netdev:
Expand Down
1 change: 1 addition & 0 deletions trunk/net/atm/br2684.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,7 @@ static void br2684_setup(struct net_device *netdev)
struct br2684_dev *brdev = BRPRIV(netdev);

ether_setup(netdev);
brdev->net_dev = netdev;

netdev->netdev_ops = &br2684_netdev_ops;

Expand Down
2 changes: 1 addition & 1 deletion trunk/net/sched/cls_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n, void *arg)
}
tp->ops = tp_ops;
tp->protocol = protocol;
tp->prio = nprio ? : tcf_auto_prio(*back);
tp->prio = nprio ? : TC_H_MAJ(tcf_auto_prio(*back));
tp->q = q;
tp->classify = tp_ops->classify;
tp->classid = parent;
Expand Down

0 comments on commit 8722e12

Please sign in to comment.