Skip to content

Commit 3c47208

Browse files
xdarklightgregkh
authored andcommitted
pinctrl: meson: meson8b: fix the NAND DQS pins
commit 97ba26b8a9343008504d4e3a87d212bc07b05212 upstream. The nand_groups table uses different names for the NAND DQS pins than the GROUP() definition in meson8b_cbus_groups (nand_dqs_0 vs nand_dqs0). This prevents using the NAND DQS pins in the devicetree. Fix this by ensuring that the GROUP() definition and the meson8b_cbus_groups use the same name for these pins. Fixes: 0fefcb6 ("pinctrl: Add support for Meson8b") Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Acked-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 5d030f5 commit 3c47208

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/pinctrl/meson/pinctrl-meson8b.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -732,8 +732,8 @@ static const char * const sdxc_c_groups[] = {
732732
static const char * const nand_groups[] = {
733733
"nand_io", "nand_io_ce0", "nand_io_ce1",
734734
"nand_io_rb0", "nand_ale", "nand_cle",
735-
"nand_wen_clk", "nand_ren_clk", "nand_dqs0",
736-
"nand_dqs1"
735+
"nand_wen_clk", "nand_ren_clk", "nand_dqs_0",
736+
"nand_dqs_1"
737737
};
738738

739739
static const char * const nor_groups[] = {

0 commit comments

Comments
 (0)