Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 58227
b: refs/heads/master
c: 0da2f0f
h: refs/heads/master
i:
  58225: 2edce22
  58223: 3b3e2bb
v: v3
  • Loading branch information
Yoann Padioleau authored and Linus Torvalds committed Jul 6, 2007
1 parent e2a8ce0 commit 2cfe19b
Show file tree
Hide file tree
Showing 6 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: 071922c08cef62e194d83db1cc4fa75892c69651
refs/heads/master: 0da2f0f164f098bb4447c714b552ac1681b2d6e8
2 changes: 1 addition & 1 deletion trunk/drivers/atm/firestream.c
Original file line number Diff line number Diff line change
Expand Up @@ -1654,7 +1654,7 @@ static void fs_poll (unsigned long data)
{
struct fs_dev *dev = (struct fs_dev *) data;

fs_irq (0, dev, NULL);
fs_irq (0, dev);
dev->timer.expires = jiffies + FS_POLL_FREQ;
add_timer (&dev->timer);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/arm/am79c961a.c
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ static void am79c961_poll_controller(struct net_device *dev)
{
unsigned long flags;
local_irq_save(flags);
am79c961_interrupt(dev->irq, dev, NULL);
am79c961_interrupt(dev->irq, dev);
local_irq_restore(flags);
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/ixp2000/ixpdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ static irqreturn_t ixpdev_interrupt(int irq, void *dev_id)
static void ixpdev_poll_controller(struct net_device *dev)
{
disable_irq(IRQ_IXP2000_THDA0);
ixpdev_interrupt(IRQ_IXP2000_THDA0, dev, NULL);
ixpdev_interrupt(IRQ_IXP2000_THDA0, dev);
enable_irq(IRQ_IXP2000_THDA0);
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/sb1250-mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ static void sbmac_netpoll(struct net_device *netdev)

__raw_writeq(0, sc->sbm_imr);

sbmac_intr(irq, netdev, NULL);
sbmac_intr(irq, netdev);

#ifdef CONFIG_SBMAC_COALESCE
__raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/misc/uss720.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ static int uss720_irq(int usbstatus, void *buffer, int len, void *dev_id)
memcpy(priv->reg, buffer, 4);
/* if nAck interrupts are enabled and we have an interrupt, call the interrupt procedure */
if (priv->reg[2] & priv->reg[1] & 0x10)
parport_generic_irq(0, pp, NULL);
parport_generic_irq(0, pp);
return 1;
}
#endif
Expand Down

0 comments on commit 2cfe19b

Please sign in to comment.