cpufreq: Fix warning on unused of_device_id tables for !CONFIG_OF
authorRob Herring (Arm) <robh@kernel.org>
Fri, 9 Aug 2024 17:24:38 +0000 (11:24 -0600)
committerViresh Kumar <viresh.kumar@linaro.org>
Wed, 4 Sep 2024 15:13:59 +0000 (20:43 +0530)
commit24f9bfb847b7340b91e35742adf0ab87440e7079
tree5e81e363e9f11b720061c8f1bf1d5434b5e76588
parent49243adc715e6ae34d6cc003827e63bcf5b3a21d
cpufreq: Fix warning on unused of_device_id tables for !CONFIG_OF

!CONFIG_OF builds cause warnings on unused of_device_id tables. This is
due to of_match_node() being a macro rather than static inline function.
Add a __maybe_unused annotation to the of_device_id tables.

Fixes: c7582ec85342 ("cpufreq: Drop CONFIG_ARM and CONFIG_ARM64 dependency on Arm drivers")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202408090714.wcrqU6Pk-lkp@intel.com/
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/apple-soc-cpufreq.c
drivers/cpufreq/mediatek-cpufreq.c
drivers/cpufreq/qcom-cpufreq-nvmem.c
drivers/cpufreq/ti-cpufreq.c