diff options
| author | Richard Acayan <mailingradian@gmail.com> | 2026-04-09 01:30:38 +0300 |
|---|---|---|
| committer | Linus Walleij <linusw@kernel.org> | 2026-04-09 10:20:56 +0300 |
| commit | 7fe21f1ef74f2f4b95896789db656c84b22f01c1 (patch) | |
| tree | 66c15a7c0c580308435df266d5b5a83dca24883f | |
| parent | 7648112358a4207916d3e38bfee49f85552fe95f (diff) | |
| download | linux-7fe21f1ef74f2f4b95896789db656c84b22f01c1.tar.xz | |
pinctrl: qcom: sdm670-lpass-lpi: label variables as static
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>
| -rw-r--r-- | drivers/pinctrl/qcom/pinctrl-sdm670-lpass-lpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/qcom/pinctrl-sdm670-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sdm670-lpass-lpi.c index 6270c6d09c22..858146c408d0 100644 --- a/drivers/pinctrl/qcom/pinctrl-sdm670-lpass-lpi.c +++ b/drivers/pinctrl/qcom/pinctrl-sdm670-lpass-lpi.c @@ -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), |
