diff options
| author | 2015-07-17 14:45:31 +0200 | |
|---|---|---|
| committer | 2015-07-17 14:45:31 +0200 | |
| commit | bcae888039d5f0b522e1588c54f95a7612d1723c (patch) | |
| tree | d8039698a3b74223dc94798046049e9bfcf23fe7 /drivers/gpio/gpio-sa1100.c | |
| parent | gpio/davinci: add interrupt support for GPIOs 16-31 (diff) | |
| parent | gpio/davinci: Fix race in installing chained irq handler (diff) | |
| download | linux-dev-bcae888039d5f0b522e1588c54f95a7612d1723c.tar.xz linux-dev-bcae888039d5f0b522e1588c54f95a7612d1723c.zip | |
Merge branch 'queue/irq/gpio' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip into devel
Diffstat (limited to 'drivers/gpio/gpio-sa1100.c')
| -rw-r--r-- | drivers/gpio/gpio-sa1100.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-sa1100.c b/drivers/gpio/gpio-sa1100.c index 3fa22dade243..e847a4cf9326 100644 --- a/drivers/gpio/gpio-sa1100.c +++ b/drivers/gpio/gpio-sa1100.c @@ -173,9 +173,9 @@ static struct irq_domain *sa1100_gpio_irqdomain; * and call the handler. */ static void -sa1100_gpio_handler(unsigned int irq, struct irq_desc *desc) +sa1100_gpio_handler(unsigned int __irq, struct irq_desc *desc) { - unsigned int mask; + unsigned int irq, mask; mask = GEDR; do { |
