Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

regulator: stm32-pwr: Fix W=1 build warning when CONFIG_OF=n

Fix below warning when CONFIG_OF=n:

drivers/regulator/stm32-pwr.c:169:34: warning: ‘stm32_pwr_of_match’ defined but not used [-Wunused-const-variable=]
169 | static const struct of_device_id stm32_pwr_of_match[] = {
| ^~~~~~~~~~~~~~~~~~

Signed-off-by: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
Link: https://lore.kernel.org/r/20200821111726.38e0e746@xhacker.debian
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Jisheng Zhang and committed by
Mark Brown
a94a11ce dc8c5ea3

+1 -1
+1 -1
drivers/regulator/stm32-pwr.c
··· 166 166 return ret; 167 167 } 168 168 169 - static const struct of_device_id stm32_pwr_of_match[] = { 169 + static const struct of_device_id __maybe_unused stm32_pwr_of_match[] = { 170 170 { .compatible = "st,stm32mp1,pwr-reg", }, 171 171 {}, 172 172 };