]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
pinctrl: qcom: sdm670-lpass-lpi: label variables as static
authorRichard Acayan <mailingradian@gmail.com>
Wed, 8 Apr 2026 22:30:38 +0000 (18:30 -0400)
committerLinus Walleij <linusw@kernel.org>
Thu, 9 Apr 2026 07:20:56 +0000 (09:20 +0200)
These variables are local to the driver and have no need to be exported
to the global namespace. Label them as static to fix compiler warnings.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202604080950.Mvm8aN0a-lkp@intel.com/
Fixes: 9826035a75da ("pinctrl: qcom: add sdm670 lpi tlmm")
Signed-off-by: Richard Acayan <mailingradian@gmail.com>
Signed-off-by: Linus Walleij <linusw@kernel.org>
drivers/pinctrl/qcom/pinctrl-sdm670-lpass-lpi.c

index 6270c6d09c2295fa6ea4faeb225fa6707ff7c0ed..858146c408d0c1bd8cf21bb68c2f44c37ed06663 100644 (file)
@@ -80,7 +80,7 @@ static const char * const pdm_sync_groups[] = { "gpio19" };
 static const char * const pdm_tx_groups[] = { "gpio20" };
 static const char * const slimbus_clk_groups[] = { "gpio18" };
 
-const struct lpi_pingroup sdm670_lpi_pinctrl_groups[] = {
+static const struct lpi_pingroup sdm670_lpi_pinctrl_groups[] = {
        LPI_PINGROUP(0, LPI_NO_SLEW, _, _, _, _),
        LPI_PINGROUP(1, LPI_NO_SLEW, _, _, _, _),
        LPI_PINGROUP(2, LPI_NO_SLEW, _, _, _, _),
@@ -115,7 +115,7 @@ const struct lpi_pingroup sdm670_lpi_pinctrl_groups[] = {
        LPI_PINGROUP(31, LPI_NO_SLEW, _, _, _, _),
 };
 
-const struct lpi_function sdm670_lpi_pinctrl_functions[] = {
+static const struct lpi_function sdm670_lpi_pinctrl_functions[] = {
        LPI_FUNCTION(comp_rx),
        LPI_FUNCTION(dmic1_clk),
        LPI_FUNCTION(dmic1_data),