diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2014-11-21 19:06:15 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-21 15:59:57 +0000 |
commit | 1a28fc190c60e9bb04649384826f3224c8463efc (patch) | |
tree | e08a46409a137d2104738248aa64ee33717be80e /sound/soc/intel | |
parent | 996cc8494d663cb03c5ec23ced0e09e4bcd845de (diff) | |
download | blackbird-obmc-linux-1a28fc190c60e9bb04649384826f3224c8463efc.tar.gz blackbird-obmc-linux-1a28fc190c60e9bb04649384826f3224c8463efc.zip |
ASoC: Intel: byt_rvp_platform_data can be static
sound/soc/intel/sst/sst_acpi.c:124:26: sparse: symbol 'byt_rvp_platform_data' was not declared. Should it be static?
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel')
-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 b261821163fa..f94f007a0e49 100644 --- a/sound/soc/intel/sst/sst_acpi.c +++ b/sound/soc/intel/sst/sst_acpi.c @@ -121,7 +121,7 @@ static const struct sst_res_info byt_rvp_res_info = { .acpi_ipc_irq_index = 5, }; -struct sst_platform_info byt_rvp_platform_data = { +static struct sst_platform_info byt_rvp_platform_data = { .probe_data = &byt_fwparse_info, .ipc_info = &byt_ipc_info, .lib_info = &byt_lib_dnld_info, |