diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2023-06-14 12:30:32 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2023-06-22 18:30:09 +0300 |
commit | c1d57ee6eb99699f5ccd92fc6e8c5a79103dcaae (patch) | |
tree | a2596b53b90d33585fc1840843c5f1946c669313 /arch/arm | |
parent | 00896810337e73f40af31f9818bfaa3e46fef917 (diff) | |
download | linux-c1d57ee6eb99699f5ccd92fc6e8c5a79103dcaae.tar.xz |
ARM: omap2: Fix copy/paste bug
I mistyped one of the SD/MMC GPIO lines on the Nokia n810 which
was supposed to be "vio" as "vsd".
Fix it up.
Reported-by: Peter Vasil <petervasil@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Tony Lindgren <tony@atomide.com>
Link: https://lore.kernel.org/r/20230614093032.403982-1-linus.walleij@linaro.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-omap2/board-n8x0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-n8x0.c b/arch/arm/mach-omap2/board-n8x0.c index 564bf80a2621..8e3b5068d4ab 100644 --- a/arch/arm/mach-omap2/board-n8x0.c +++ b/arch/arm/mach-omap2/board-n8x0.c @@ -158,7 +158,7 @@ static struct gpiod_lookup_table nokia810_mmc_gpio_table = { "vsd", 1, GPIO_ACTIVE_HIGH), /* Slot index 1, VIO power, GPIO 9 */ GPIO_LOOKUP_IDX("gpio-0-15", 9, - "vsd", 1, GPIO_ACTIVE_HIGH), + "vio", 1, GPIO_ACTIVE_HIGH), { } }, }; |