[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20200820153213.4d9a9666@xhacker.debian>
Date: Thu, 20 Aug 2020 15:32:13 +0800
From: Jisheng Zhang <Jisheng.Zhang@...aptics.com>
To: Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>,
Support Opensource <support.opensource@...semi.com>,
Maxime Coquelin <mcoquelin.stm32@...il.com>,
Alexandre Torgue <alexandre.torgue@...com>,
Icenowy Zheng <icenowy@...c.io>
Cc: linux-kernel@...r.kernel.org,
linux-stm32@...md-mailman.stormreply.com,
linux-arm-kernel@...ts.infradead.org
Subject: [PATCH 01/12] regulator: 88pg86x: Fix W=1 build warning when
CONFIG_OF=n
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@...aptics.com>
---
drivers/regulator/88pg86x.c | 2 ++
1 file changed, 2 insertions(+)
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", },
--
2.28.0
Powered by blists - more mailing lists