diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2014-11-22 04:50:33 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-21 23:17:58 +0000 |
commit | 14cd7923122c7c4473848f7c737604bfe945b81b (patch) | |
tree | 65c6818cdd3d0fe3199fb8f09cfd2367408456cc | |
parent | bd01fdc3aa63b7ba0b035f9196d80551ad03f5d4 (diff) |
ASoC: Intel: chv_platform_data can be static
sound/soc/intel/sst/sst_acpi.c:135:26: sparse: symbol 'chv_platform_data' was not declared. Should it be static?
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/intel/sst/sst_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/sst/sst_acpi.c b/sound/soc/intel/sst/sst_acpi.c index 3f29721625c..31124aa4434 100644 --- a/sound/soc/intel/sst/sst_acpi.c +++ b/sound/soc/intel/sst/sst_acpi.c @@ -132,7 +132,7 @@ static struct sst_platform_info byt_rvp_platform_data = { /* Cherryview (Cherrytrail and Braswell) uses same mrfld dpcm fw as Baytrail, * so pdata is same as Baytrail. */ -struct sst_platform_info chv_platform_data = { +static struct sst_platform_info chv_platform_data = { .probe_data = &byt_fwparse_info, .ipc_info = &byt_ipc_info, .lib_info = &byt_lib_dnld_info, |