Skip to content

Commit

Permalink
ASoC: Intel: Skylake: Unstatify skl_dsp_enable_core
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: GuruprasadX Pawse <[email protected]>
Signed-off-by: Vinod Koul <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
jaybnair authored and broonie committed Mar 12, 2016
1 parent a360b62 commit 130e69a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/intel/skylake/skl-sst-dsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
1 change: 1 addition & 0 deletions sound/soc/intel/skylake/skl-sst-dsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ int skl_cldma_prepare(struct sst_dsp *ctx);
void skl_dsp_set_state_locked(struct sst_dsp *ctx, int state);
struct sst_dsp *skl_dsp_ctx_init(struct device *dev,
struct sst_dsp_device *sst_dev, int irq);
int skl_dsp_enable_core(struct sst_dsp *ctx);
int skl_dsp_disable_core(struct sst_dsp *ctx);
bool is_skl_dsp_running(struct sst_dsp *ctx);
irqreturn_t skl_dsp_sst_interrupt(int irq, void *dev_id);
Expand Down

0 comments on commit 130e69a

Please sign in to comment.