diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-04-03 10:02:12 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-04-03 21:52:26 +0200 |
commit | cb46a256a78225817945cd52068d61d5126c236e (patch) | |
tree | 35799d5e496da8ba86b9e347e0aef029d2d94a0c /arch | |
parent | f8afae40a076347eeb9be179522b570e50d39af4 (diff) | |
download | linux-stable-cb46a256a78225817945cd52068d61d5126c236e.tar.gz linux-stable-cb46a256a78225817945cd52068d61d5126c236e.tar.bz2 linux-stable-cb46a256a78225817945cd52068d61d5126c236e.zip |
ARM: at91: fix a typo
My recent commit 871336a9379 "ARM: at91: fix broken "if () else" statement"
introduced a typo because of a last-minute fixup. This adds the missing
closing parenthesis.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-at91/at91sam9260_devices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/at91sam9260_devices.c b/arch/arm/mach-at91/at91sam9260_devices.c index 8a4c6656b608..1630ae64d3fb 100644 --- a/arch/arm/mach-at91/at91sam9260_devices.c +++ b/arch/arm/mach-at91/at91sam9260_devices.c @@ -1255,7 +1255,7 @@ void __init at91_add_device_cf(struct at91_cf_data *data) at91_set_A_periph(AT91_PIN_PC10, 0); /* CFRNW */ at91_set_A_periph(AT91_PIN_PC15, 1); /* NWAIT */ - if (IS_ENABLED(CONFIG_PATA_AT91) && (data->flags & AT91_CF_TRUE_IDE) + if (IS_ENABLED(CONFIG_PATA_AT91) && (data->flags & AT91_CF_TRUE_IDE)) pdev->name = "pata_at91"; else pdev->name = "at91_cf"; |