ASoC: uniphier: mark OF related data as maybe unused
authorKrzysztof Kozlowski <krzk@kernel.org>
Wed, 25 Nov 2020 16:44:26 +0000 (17:44 +0100)
committerMark Brown <broonie@kernel.org>
Thu, 26 Nov 2020 13:07:09 +0000 (13:07 +0000)
The driver can be compile tested with !CONFIG_OF making certain data
unused:

  sound/soc/uniphier/aio-ld11.c:375:34: warning: ‘uniphier_aio_of_match’ defined but not used [-Wunused-const-variable=]
  sound/soc/uniphier/evea.c:554:34: warning: ‘evea_of_match’ defined but not used [-Wunused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20201125164452.89239-14-krzk@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/uniphier/aio-ld11.c
sound/soc/uniphier/aio-pxs2.c
sound/soc/uniphier/evea.c

index 8b44f8dc4970ca5e711854bb6973f76f6a0ef3dc..7b3cf5d751f69c5ce564dd58d6869b92d603ca21 100644 (file)
@@ -372,7 +372,7 @@ static const struct uniphier_aio_chip_spec uniphier_aio_ld20_spec = {
        .addr_ext  = 1,
 };
 
-static const struct of_device_id uniphier_aio_of_match[] = {
+static const struct of_device_id uniphier_aio_of_match[] __maybe_unused = {
        {
                .compatible = "socionext,uniphier-ld11-aio",
                .data = &uniphier_aio_ld11_spec,
index a1d05fe9d3c28c108b3fa559213cd2e1e57e3527..899904f7ffd6d653b0ec933ba1acbc94c78ab950 100644 (file)
@@ -282,7 +282,7 @@ static const struct uniphier_aio_chip_spec uniphier_aio_pxs2_spec = {
        .addr_ext  = 0,
 };
 
-static const struct of_device_id uniphier_aio_of_match[] = {
+static const struct of_device_id uniphier_aio_of_match[] __maybe_unused = {
        {
                .compatible = "socionext,uniphier-pxs2-aio",
                .data = &uniphier_aio_pxs2_spec,
index d27e9ca07856c9e9671253e29d2a7244e7a1d814..96343d19a1e0f1d9eab9983edc31838c9a56c67d 100644 (file)
@@ -551,7 +551,7 @@ static int evea_remove(struct platform_device *pdev)
        return 0;
 }
 
-static const struct of_device_id evea_of_match[] = {
+static const struct of_device_id evea_of_match[] __maybe_unused = {
        { .compatible = "socionext,uniphier-evea", },
        {}
 };