ARM: at91: fix a typo
authorArnd Bergmann <arnd@arndb.de>
Thu, 3 Apr 2014 08:02:12 +0000 (10:02 +0200)
committerArnd Bergmann <arnd@arndb.de>
Thu, 3 Apr 2014 19:52:26 +0000 (21:52 +0200)
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>
arch/arm/mach-at91/at91sam9260_devices.c

index 8a4c6656b60844a9f8fcd413839df7bf41654102..1630ae64d3fb9bf4cdddf93ca29b3733110c7876 100644 (file)
@@ -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";