diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpio/gpio-pch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-pch.c b/drivers/gpio/gpio-pch.c index 2d9a950ca2d4..34ed176df15a 100644 --- a/drivers/gpio/gpio-pch.c +++ b/drivers/gpio/gpio-pch.c | |||
@@ -281,9 +281,9 @@ static int pch_irq_type(struct irq_data *d, unsigned int type) | |||
281 | 281 | ||
282 | /* And the handler */ | 282 | /* And the handler */ |
283 | if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) | 283 | if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) |
284 | __irq_set_handler_locked(d->irq, handle_level_irq); | 284 | irq_set_handler_locked(d, handle_level_irq); |
285 | else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) | 285 | else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) |
286 | __irq_set_handler_locked(d->irq, handle_edge_irq); | 286 | irq_set_handler_locked(d, handle_edge_irq); |
287 | 287 | ||
288 | unlock: | 288 | unlock: |
289 | spin_unlock_irqrestore(&chip->spinlock, flags); | 289 | spin_unlock_irqrestore(&chip->spinlock, flags); |