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

reset: a10sr: add missing of_match_table reference

The driver defined of_device_id table but did not use it with
of_match_table. This prevents usual matching via devicetree and causes
a W=1 warning:

drivers/reset/reset-a10sr.c:111:34: warning:
‘a10sr_reset_of_match’ defined but not used [-Wunused-const-variable=]

Reported-by: kernel test robot <lkp@intel.com>
Fixes: 627006820268 ("reset: Add Altera Arria10 SR Reset Controller")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Link: https://lore.kernel.org/r/20210507112803.20012-1-krzysztof.kozlowski@canonical.com
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>

authored by

Krzysztof Kozlowski and committed by
Philipp Zabel
466ba3c8 6ab9d621

+1
+1
drivers/reset/reset-a10sr.c
··· 118 118 .probe = a10sr_reset_probe, 119 119 .driver = { 120 120 .name = "altr_a10sr_reset", 121 + .of_match_table = a10sr_reset_of_match, 121 122 }, 122 123 }; 123 124 module_platform_driver(a10sr_reset_driver);