]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: fsl: make snd_pcm_hardware const
authorBhumika Goyal <bhumirks@gmail.com>
Thu, 17 Aug 2017 10:16:07 +0000 (15:46 +0530)
committerMark Brown <broonie@kernel.org>
Thu, 17 Aug 2017 16:56:52 +0000 (17:56 +0100)
Make these const as they are only passed as the 2nd argument to the
function snd_soc_set_runtime_hwparams, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/fsl/fsl_asrc_dma.c
sound/soc/fsl/imx-pcm-fiq.c

index 2baf19608bd067a176baaa4a36450c50148184b9..e1b97e59275a9ebdc31f85cc7e8aa883b0ad1700 100644 (file)
@@ -20,7 +20,7 @@
 
 #define FSL_ASRC_DMABUF_SIZE   (256 * 1024)
 
-static struct snd_pcm_hardware snd_imx_hardware = {
+static const struct snd_pcm_hardware snd_imx_hardware = {
        .info = SNDRV_PCM_INFO_INTERLEAVED |
                SNDRV_PCM_INFO_BLOCK_TRANSFER |
                SNDRV_PCM_INFO_MMAP |
index aef1f7819c40e42cb434b3a05791a785980ed4ac..4e5fefee111eb285c1005edcbf22dd9d1c47d6f2 100644 (file)
@@ -154,7 +154,7 @@ static snd_pcm_uframes_t snd_imx_pcm_pointer(struct snd_pcm_substream *substream
        return bytes_to_frames(substream->runtime, iprtd->offset);
 }
 
-static struct snd_pcm_hardware snd_imx_hardware = {
+static const struct snd_pcm_hardware snd_imx_hardware = {
        .info = SNDRV_PCM_INFO_INTERLEAVED |
                SNDRV_PCM_INFO_BLOCK_TRANSFER |
                SNDRV_PCM_INFO_MMAP |