]> Git Repo - linux.git/commitdiff
ASoC: txx9: Don't set unused struct snd_pcm_hardware fields
authorLars-Peter Clausen <[email protected]>
Fri, 20 Dec 2013 13:20:23 +0000 (14:20 +0100)
committerMark Brown <[email protected]>
Mon, 30 Dec 2013 13:58:02 +0000 (13:58 +0000)
The ASoC core assumes that the PCM component of the ASoC card transparently
moves data around and does not impose any restrictions on the memory layout or
the transfer speed. It ignores all fields from the snd_pcm_hardware struct for
the PCM driver that are related to this. Setting these fields in the PCM driver
might suggest otherwise though, so rather not set them.

Signed-off-by: Lars-Peter Clausen <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
sound/soc/txx9/txx9aclc.c

index fbd077f4de729e24da0049e96924e6d27dababba..f0829de28708b20724fffddf831bec56818152d1 100644 (file)
@@ -40,11 +40,6 @@ static const struct snd_pcm_hardware txx9aclc_pcm_hardware = {
        .info             = SNDRV_PCM_INFO_INTERLEAVED |
                            SNDRV_PCM_INFO_BATCH |
                            SNDRV_PCM_INFO_PAUSE,
-#ifdef __BIG_ENDIAN
-       .formats          = SNDRV_PCM_FMTBIT_S16_BE,
-#else
-       .formats          = SNDRV_PCM_FMTBIT_S16_LE,
-#endif
        .period_bytes_min = 1024,
        .period_bytes_max = 8 * 1024,
        .periods_min      = 2,
This page took 0.059676 seconds and 4 git commands to generate.