ASoC: soc-pcm: direct copy at snd_soc_set_runtime_hwparams()
[linux-2.6-microblaze.git] / sound / soc / soc-pcm.c
index 60e688b..6f2de27 100644 (file)
@@ -300,15 +300,8 @@ bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
        const struct snd_pcm_hardware *hw)
 {
-       struct snd_pcm_runtime *runtime = substream->runtime;
-       runtime->hw.info = hw->info;
-       runtime->hw.formats = hw->formats;
-       runtime->hw.period_bytes_min = hw->period_bytes_min;
-       runtime->hw.period_bytes_max = hw->period_bytes_max;
-       runtime->hw.periods_min = hw->periods_min;
-       runtime->hw.periods_max = hw->periods_max;
-       runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
-       runtime->hw.fifo_size = hw->fifo_size;
+       substream->runtime->hw = *hw;
+
        return 0;
 }
 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);