diff options
author | Vinod Koul | 2014-06-13 18:03:52 +0530 |
---|---|---|
committer | Mark Brown | 2014-06-21 16:31:00 +0100 |
commit | 9daa5bd34f84e43f23ce996d43da5f39348ae8fd (patch) | |
tree | 7d7097239395a36bb3d07737c63e70b3c181c451 /sound/soc/intel/sst-mfld-platform.h | |
parent | 6cc0f4e63994a2b77fb6cd7c3bc1e25b7bdb9881 (diff) |
ASoC: Intel: mfld-pcm rename period callback arg
The argument was called mad_substream which is no longer apt as older driver
is not used anymore so rename as arg
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/intel/sst-mfld-platform.h')
-rw-r--r-- | sound/soc/intel/sst-mfld-platform.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/intel/sst-mfld-platform.h b/sound/soc/intel/sst-mfld-platform.h index 6c5e7dc49e3c..6d929c7d7bbb 100644 --- a/sound/soc/intel/sst-mfld-platform.h +++ b/sound/soc/intel/sst-mfld-platform.h @@ -39,8 +39,8 @@ extern struct sst_device *sst; struct pcm_stream_info { int str_id; - void *mad_substream; - void (*period_elapsed) (void *mad_substream); + void *arg; + void (*period_elapsed) (void *arg); unsigned long long buffer_ptr; int sfreq; }; |