diff mbox series

[02/12] regulator: da9210: Fix W=1 build warning when CONFIG_OF=n

Message ID 20200820153326.4dc2eaa5@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:33 a.m. UTC
Fix below warning when CONFIG_OF=n:

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

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

Patch

diff --git a/drivers/regulator/da9210-regulator.c b/drivers/regulator/da9210-regulator.c
index 0cdeb6186529..219baed89ba5 100644
--- a/drivers/regulator/da9210-regulator.c
+++ b/drivers/regulator/da9210-regulator.c
@@ -125,11 +125,13 @@  static irqreturn_t da9210_irq_handler(int irq, void *data)
  * I2C driver interface functions
  */
 
+#ifdef CONFIG_OF
 static const struct of_device_id da9210_dt_ids[] = {
 	{ .compatible = "dlg,da9210", },
 	{ }
 };
 MODULE_DEVICE_TABLE(of, da9210_dt_ids);
+#endif
 
 static int da9210_i2c_probe(struct i2c_client *i2c)
 {