diff options
author | Jisheng Zhang <Jisheng.Zhang@synaptics.com> | 2020-08-21 11:12:10 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-08-21 17:28:09 +0100 |
commit | e11e068ccbdb038e21e24ad2ee0157c902e3c9fc (patch) | |
tree | b2f30fe5c35c8e1a9d4cb95d5ede2e9f60ca5bd7 /drivers/regulator | |
parent | 02532cb80543b50611656a6017bfec7477e2e200 (diff) |
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@synaptics.com>
Link: https://lore.kernel.org/r/20200821111210.0a0bed94@xhacker.debian
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/88pg86x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/88pg86x.c b/drivers/regulator/88pg86x.c index 71cfa2c5de5e..e91d5885c5ef 100644 --- a/drivers/regulator/88pg86x.c +++ b/drivers/regulator/88pg86x.c @@ -84,7 +84,7 @@ static int pg86x_i2c_probe(struct i2c_client *i2c) return 0; } -static const struct of_device_id pg86x_dt_ids [] = { +static const struct of_device_id __maybe_unused pg86x_dt_ids[] = { { .compatible = "marvell,88pg867" }, { .compatible = "marvell,88pg868" }, { } |