diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-30 03:12:38 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-30 03:12:38 +0100 |
commit | 4260b929697ccca189c0e46622be0dea1965715c (patch) | |
tree | 3d3240028fee42f47e31de6ca77d17bf47fbb707 | |
parent | 60fe425a271707bb3e4723d67d790886e159f350 (diff) | |
download | ldd3-4260b929697ccca189c0e46622be0dea1965715c.tar.gz |
short: Remove struct pt_regs parameter from short_probing irq handler
-rw-r--r-- | short/short.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/short/short.c b/short/short.c index 35fed56..5822dc4 100644 --- a/short/short.c +++ b/short/short.c @@ -490,7 +490,7 @@ void short_kernelprobe(void) printk("short: probe failed %i times, giving up\n", count); } -irqreturn_t short_probing(int irq, void *dev_id, struct pt_regs *regs) +irqreturn_t short_probing(int irq, void *dev_id) { if (short_irq == 0) short_irq = irq; /* found */ if (short_irq != irq) short_irq = -irq; /* ambiguous */ |