]> git.baikalelectronics.ru Git - kernel.git/commit
pinctrl: qcom: fix unintentional string concatenation
authorArnd Bergmann <arnd@arndb.de>
Tue, 23 Mar 2021 13:17:13 +0000 (14:17 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 25 Mar 2021 09:45:11 +0000 (10:45 +0100)
commitae48e6181c2219a78a58c51730302744074a7b2f
treeca6f89f61ead3a586f1d66db6202435b94315ee1
parentbf800fd0d8206e8bbce447179067b967f8a851a9
pinctrl: qcom: fix unintentional string concatenation

clang is clearly correct to point out a typo in a silly
array of strings:

drivers/pinctrl/qcom/pinctrl-sdx55.c:426:61: error: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Werror,-Wstring-concatenation]
        "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19" "gpio20", "gpio21", "gpio22",
                                                                   ^
Add the missing comma that must have accidentally been removed.

Fixes: fb226abd43c4 ("pinctrl: qcom: Add SDX55 pincontrol driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Link: https://lore.kernel.org/r/20210323131728.2702789-1-arnd@kernel.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/qcom/pinctrl-sdx55.c