diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-11-25 19:44:14 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-11-26 16:06:58 +0300 |
commit | 9f34c04057232ca2688d26416d3f0011c5ea5377 (patch) | |
tree | b95d9750500c1831bca44689ca207cfba6179f48 | |
parent | 373c2cebf42772434c8dd0deffc3b3886ea8f1eb (diff) | |
download | linux-9f34c04057232ca2688d26416d3f0011c5ea5377.tar.xz |
ASoC: ak5558: mark OF related data as maybe unused
The driver can be compile tested with !CONFIG_OF making certain data
unused:
sound/soc/codecs/ak5558.c:418:34: warning: ‘ak5558_i2c_dt_ids’ defined but not used [-Wunused-const-variable=]
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20201125164452.89239-2-krzk@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/ak5558.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/ak5558.c b/sound/soc/codecs/ak5558.c index 2f076d5ee284..8a32b0139cb0 100644 --- a/sound/soc/codecs/ak5558.c +++ b/sound/soc/codecs/ak5558.c @@ -415,7 +415,7 @@ static int ak5558_i2c_remove(struct i2c_client *i2c) return 0; } -static const struct of_device_id ak5558_i2c_dt_ids[] = { +static const struct of_device_id ak5558_i2c_dt_ids[] __maybe_unused = { { .compatible = "asahi-kasei,ak5558"}, { } }; |