Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pinctrl: meson-gxbb: add the missing SDIO interrupt pin

This adds the SDIO interrupt pin which can be used by sd_emmc_a.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Suggested-by: Neil Armstrong <narmstrong@baylibre.com>

Fixes: 29885a656511 ("pinctrl: meson-gxbb: add the pins for the
SDIO/sd_emmc_a controller")
Acked-by: Kevin Hilman <khilman@baylibre.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

authored by

Martin Blumenstingl and committed by
Linus Walleij
9b5fb0ca 55956035

+3 -1
+3 -1
drivers/pinctrl/meson/pinctrl-meson-gxbb.c
··· 169 169 static const unsigned int sdio_d3_pins[] = { PIN(GPIOX_3, EE_OFF) }; 170 170 static const unsigned int sdio_cmd_pins[] = { PIN(GPIOX_4, EE_OFF) }; 171 171 static const unsigned int sdio_clk_pins[] = { PIN(GPIOX_5, EE_OFF) }; 172 + static const unsigned int sdio_irq_pins[] = { PIN(GPIOX_7, EE_OFF) }; 172 173 173 174 static const unsigned int uart_tx_a_pins[] = { PIN(GPIOX_12, EE_OFF) }; 174 175 static const unsigned int uart_rx_a_pins[] = { PIN(GPIOX_13, EE_OFF) }; ··· 384 383 GROUP(sdio_d3, 8, 2), 385 384 GROUP(sdio_cmd, 8, 1), 386 385 GROUP(sdio_clk, 8, 0), 386 + GROUP(sdio_irq, 8, 11), 387 387 GROUP(uart_tx_a, 4, 13), 388 388 GROUP(uart_rx_a, 4, 12), 389 389 GROUP(uart_cts_a, 4, 11), ··· 524 522 525 523 static const char * const sdio_groups[] = { 526 524 "sdio_d0", "sdio_d1", "sdio_d2", "sdio_d3", 527 - "sdio_cmd", "sdio_clk", 525 + "sdio_cmd", "sdio_clk", "sdio_irq", 528 526 }; 529 527 530 528 static const char * const uart_a_groups[] = {