Fix below warning when CONFIG_OF=n: drivers/regulator/fan53555.c:439:34: warning: ‘fan53555_dt_ids’ defined but not used [-Wunused-const-variable=] 439 | static const struct of_device_id fan53555_dt_ids[] = { | ^~~~~~~~~~~~~~~
Signed-off-by: Jisheng Zhang <jisheng.zh...@synaptics.com> --- drivers/regulator/fan53555.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/regulator/fan53555.c b/drivers/regulator/fan53555.c index 00c83492f774..387c53f387ba 100644 --- a/drivers/regulator/fan53555.c +++ b/drivers/regulator/fan53555.c @@ -436,6 +436,7 @@ static struct fan53555_platform_data *fan53555_parse_dt(struct device *dev, return pdata; } +#ifdef CONFIG_OF static const struct of_device_id fan53555_dt_ids[] = { { .compatible = "fcs,fan53526", @@ -453,6 +454,7 @@ static const struct of_device_id fan53555_dt_ids[] = { { } }; MODULE_DEVICE_TABLE(of, fan53555_dt_ids); +#endif static int fan53555_regulator_probe(struct i2c_client *client, const struct i2c_device_id *id) -- 2.28.0