diff options
author | Jayachandran B <jayachandran.b@intel.com> | 2016-03-11 10:12:51 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-03-12 13:02:54 +0700 |
commit | 130e69a4773fb65af284d3fd1f3de762324d06e6 (patch) | |
tree | 01f095477862c236ac390dca0d5974f8e5cc482c /sound/soc/intel/skylake/skl-sst-dsp.c | |
parent | a360b623fc5593d896a8762153bacdabfe29dfb9 (diff) | |
download | linux-next-130e69a4773fb65af284d3fd1f3de762324d06e6.tar.gz |
ASoC: Intel: Skylake: Unstatify skl_dsp_enable_core
The function skl_dsp_enable_core will be called by other parts of
driver so this can no longer be a static function.
Signed-off-by: Jayachandran B <jayachandran.b@intel.com>
Signed-off-by: GuruprasadX Pawse <guruprasadx.pawse@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl-sst-dsp.c')
-rw-r--r-- | sound/soc/intel/skylake/skl-sst-dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/skylake/skl-sst-dsp.c b/sound/soc/intel/skylake/skl-sst-dsp.c index 646d10a0d176..a5267e8a96e0 100644 --- a/sound/soc/intel/skylake/skl-sst-dsp.c +++ b/sound/soc/intel/skylake/skl-sst-dsp.c @@ -181,7 +181,7 @@ static int skl_dsp_core_power_down(struct sst_dsp *ctx) "Power down"); } -static int skl_dsp_enable_core(struct sst_dsp *ctx) +int skl_dsp_enable_core(struct sst_dsp *ctx) { int ret; |