diff mbox series

[01/12] regulator: 88pg86x: Fix W=1 build warning when CONFIG_OF=n

Message ID 20200820153213.4d9a9666@xhacker.debian (mailing list archive)
State New, archived
Headers show
Series [01/12] regulator: 88pg86x: Fix W=1 build warning when CONFIG_OF=n | expand

Commit Message

Jisheng Zhang Aug. 20, 2020, 7:32 a.m. UTC
Fix below warning when CONFIG_OF=n:

drivers/regulator/88pg86x.c:87:34: warning: ‘pg86x_dt_ids’ defined but not used [-Wunused-const-variable=]
87 | static const struct of_device_id pg86x_dt_ids [] = {
   |                                  ^~~~~~~~~~~~

Signed-off-by: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
---
 drivers/regulator/88pg86x.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/drivers/regulator/88pg86x.c b/drivers/regulator/88pg86x.c
index 71cfa2c5de5e..c47c14d190f5 100644
--- a/drivers/regulator/88pg86x.c
+++ b/drivers/regulator/88pg86x.c
@@ -84,12 +84,14 @@  static int pg86x_i2c_probe(struct i2c_client *i2c)
 	return 0;
 }
 
+#ifdef CONFIG_OF
 static const struct of_device_id pg86x_dt_ids [] = {
 	{ .compatible = "marvell,88pg867" },
 	{ .compatible = "marvell,88pg868" },
 	{ }
 };
 MODULE_DEVICE_TABLE(of, pg86x_dt_ids);
+#endif
 
 static const struct i2c_device_id pg86x_i2c_id[] = {
 	{ "88pg867", },