Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb46a256 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

ARM: at91: fix a typo



My recent commit 871336a9 "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: default avatarArnd Bergmann <arnd@arndb.de>
parent f8afae40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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";