Fix warnings

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6742 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Florian Fainelli 2007-03-28 10:49:01 +00:00
parent 1b8f03005e
commit a01caacb35
1 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ static inline void adm5120_tx(struct adm5120_dma *dma, struct sk_buff **skbl,
}
}
irqreturn_t adm5120_sw_irq(int irq, void *dev_id, struct pt_regs *regs)
static irqreturn_t adm5120_sw_irq(int irq, void *dev_id)
{
unsigned long intreg;
@ -385,7 +385,7 @@ static int __init adm5120_sw_init(void)
int i, err;
struct net_device *dev;
err = request_irq(SW_IRQ, adm5120_sw_irq, 0, "ethernet switch", NULL);
err = request_irq(SW_IRQ, adm5120_sw_irq, SA_SHIRQ, "ethernet switch", NULL);
if (err)
goto out;