[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20170813152808.17774-1-colin.king@canonical.com>
Date: Sun, 13 Aug 2017 16:28:08 +0100
From: Colin King <colin.king@...onical.com>
To: Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>,
Jaroslav Kysela <perex@...ex.cz>,
Takashi Iwai <tiwai@...e.com>,
Bhumika Goyal <bhumirks@...il.com>,
Shawn Guo <shawn.guo@...aro.org>,
Baoyou Xie <baoyou.xie@...aro.org>, alsa-devel@...a-project.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] ASoC: zx_aud96p22: make array aud96p22_dt_ids static
From: Colin Ian King <colin.king@...onical.com>
The array aud96p22_dt_ids is local to the source and does not need to be
in global scope, so make it static.
Cleans up sparse warning:
symbol 'aud96p22_dt_ids' was not declared. Should it be static?
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
sound/soc/codecs/zx_aud96p22.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/codecs/zx_aud96p22.c b/sound/soc/codecs/zx_aud96p22.c
index 36d0a7087a54..78017fb69c04 100644
--- a/sound/soc/codecs/zx_aud96p22.c
+++ b/sound/soc/codecs/zx_aud96p22.c
@@ -382,7 +382,7 @@ static int aud96p22_i2c_remove(struct i2c_client *i2c)
return 0;
}
-const struct of_device_id aud96p22_dt_ids[] = {
+static const struct of_device_id aud96p22_dt_ids[] = {
{ .compatible = "zte,zx-aud96p22", },
{ }
};
--
2.11.0
Powered by blists - more mailing lists