diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2014-11-21 06:06:15 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-21 10:59:57 -0500 |
commit | 1a28fc190c60e9bb04649384826f3224c8463efc (patch) | |
tree | e08a46409a137d2104738248aa64ee33717be80e | |
parent | 996cc8494d663cb03c5ec23ced0e09e4bcd845de (diff) |
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>
-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 = { | |||
121 | .acpi_ipc_irq_index = 5, | 121 | .acpi_ipc_irq_index = 5, |
122 | }; | 122 | }; |
123 | 123 | ||
124 | struct sst_platform_info byt_rvp_platform_data = { | 124 | static struct sst_platform_info byt_rvp_platform_data = { |
125 | .probe_data = &byt_fwparse_info, | 125 | .probe_data = &byt_fwparse_info, |
126 | .ipc_info = &byt_ipc_info, | 126 | .ipc_info = &byt_ipc_info, |
127 | .lib_info = &byt_lib_dnld_info, | 127 | .lib_info = &byt_lib_dnld_info, |