From e87333c9099fce2bfa18b071fdcffb47a4bedb0c Mon Sep 17 00:00:00 2001 From: "Amit Sharma (SW-TEGRA)" Date: Tue, 15 Sep 2015 10:16:55 +0530 Subject: [PATCH] isound: soc: tegra-alt: remove static storage class from definition Fixed the following sparse warning: - warning: useless storage class specifier in empty declaration Instance variable may be a static, but the definition doesn't need the static storage specifier attached to it. Bug 200088648 Change-Id: Id709a1d205987d19d8c415a18c03b8e24eb9d7b8 Signed-off-by: Amit Sharma (SW-TEGRA) Reviewed-on: http://git-master/r/799165 GVS: Gerrit_Virtual_Submit Reviewed-by: Dipesh Gandhi Reviewed-by: Sachin Nikam --- sound/soc/tegra-alt/tegra186_asrc_alt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/tegra-alt/tegra186_asrc_alt.c b/sound/soc/tegra-alt/tegra186_asrc_alt.c index 7f122a9b..02aa6704 100644 --- a/sound/soc/tegra-alt/tegra186_asrc_alt.c +++ b/sound/soc/tegra-alt/tegra186_asrc_alt.c @@ -62,7 +62,7 @@ { ASRC_STREAM_REG(TEGRA186_ASRC_STREAM1_OUTSAMPLEBUF_CONFIG, id), 0x64} static struct device *asrc_dev; -static struct asrc_task_desc { +struct asrc_task_desc { int stream_id; enum task_event event; int action;