mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
pinctrl: zynq: fix typo in group name for qspi1
Due to a typo Zynq pin controller does not set pin function of qspi1 when using function qspi1. So pin group for qspi1 has to be renamed to "qspi1_0_grp" as outlined in the corresponding bindings documentation. This also removes kernel message: zynq-pinctrl 700.pinctrl: invalid group "qspi1_0_grp" for function "qspi1" Signed-off-by: Helmut Buchsbaum <helmut.buchsbaum@gmail.com> Acked-by: Sören Brinkmann <soren.brinkmann@xilinx.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
4a9e00600b
commit
41bd0c52c0
1 changed files with 1 additions and 1 deletions
|
@ -590,7 +590,7 @@ static const char * const usb1_groups[] = {"usb1_0_grp"};
|
|||
static const char * const mdio0_groups[] = {"mdio0_0_grp"};
|
||||
static const char * const mdio1_groups[] = {"mdio1_0_grp"};
|
||||
static const char * const qspi0_groups[] = {"qspi0_0_grp"};
|
||||
static const char * const qspi1_groups[] = {"qspi0_1_grp"};
|
||||
static const char * const qspi1_groups[] = {"qspi1_0_grp"};
|
||||
static const char * const qspi_fbclk_groups[] = {"qspi_fbclk_grp"};
|
||||
static const char * const qspi_cs1_groups[] = {"qspi_cs1_grp"};
|
||||
static const char * const spi0_groups[] = {"spi0_0_grp", "spi0_1_grp",
|
||||
|
|
Loading…
Add table
Reference in a new issue