diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2011-09-19 03:30:14 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2011-11-29 10:46:15 -0500 |
commit | 43d91483536437bac009f9dc6428b1828909e55a (patch) | |
tree | 9286ca851381e20722c40013fef5276edd877489 /drivers/ide | |
parent | 477c87e90853d136b188c50c0e4a93d01cad872e (diff) |
ARM: at91/ide: use gpio_is_valid to check the gpio
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/at91_ide.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/at91_ide.c b/drivers/ide/at91_ide.c index 6dede8f366c5..41d415529479 100644 --- a/drivers/ide/at91_ide.c +++ b/drivers/ide/at91_ide.c | |||
@@ -314,7 +314,7 @@ static int __init at91_ide_probe(struct platform_device *pdev) | |||
314 | apply_timings(board->chipselect, 0, ide_timing_find_mode(XFER_PIO_0), 0); | 314 | apply_timings(board->chipselect, 0, ide_timing_find_mode(XFER_PIO_0), 0); |
315 | 315 | ||
316 | /* with GPIO interrupt we have to do quirks in handler */ | 316 | /* with GPIO interrupt we have to do quirks in handler */ |
317 | if (board->irq_pin >= PIN_BASE) | 317 | if (gpio_is_valid(board->irq_pin)) |
318 | host->irq_handler = at91_irq_handler; | 318 | host->irq_handler = at91_irq_handler; |
319 | 319 | ||
320 | host->ports[0]->select_data = board->chipselect; | 320 | host->ports[0]->select_data = board->chipselect; |