Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 68179
b: refs/heads/master
c: 3649ba0
h: refs/heads/master
i:
  68177: faea7a1
  68175: a5f5b9c
v: v3
  • Loading branch information
Geert Uytterhoeven authored and Linus Torvalds committed Oct 13, 2007
1 parent 783c72d commit aac9e0b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 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: 0dddfd46f07db880df7d99e6ebe8baca11591f29
refs/heads/master: 3649ba001b5d037e2cead173b6cff54d32ef154a
6 changes: 3 additions & 3 deletions trunk/drivers/net/macmace.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,8 +538,9 @@ static void mace_set_multicast(struct net_device *dev)
local_irq_restore(flags);
}

static void mace_handle_misc_intrs(struct mace_data *mp, int intr)
static void mace_handle_misc_intrs(struct net_device *dev, int intr)
{
struct mace_data *mp = netdev_priv(dev);
volatile struct mace *mb = mp->mace;
static int mace_babbles, mace_jabbers;

Expand Down Expand Up @@ -571,7 +572,7 @@ static irqreturn_t mace_interrupt(int irq, void *dev_id)
local_irq_save(flags);

intr = mb->ir; /* read interrupt register */
mace_handle_misc_intrs(mp, intr);
mace_handle_misc_intrs(dev, intr);

if (intr & XMTINT) {
fs = mb->xmtfs;
Expand Down Expand Up @@ -645,7 +646,6 @@ static void mace_tx_timeout(struct net_device *dev)

static void mace_dma_rx_frame(struct net_device *dev, struct mace_frame *mf)
{
struct mace_data *mp = netdev_priv(dev);
struct sk_buff *skb;
unsigned int frame_status = mf->rcvsts;

Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/net/mvme147.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ struct net_device * __init mvme147lance_probe(int unit)
dev->open = &m147lance_open;
dev->stop = &m147lance_close;
dev->hard_start_xmit = &lance_start_xmit;
dev->get_stats = &lance_get_stats;
dev->set_multicast_list = &lance_set_multicast;
dev->tx_timeout = &lance_tx_timeout;
dev->dma = 0;
Expand Down

0 comments on commit aac9e0b

Please sign in to comment.