]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
ASoC: bunch up bit field for snd_soc_pcm_runtime
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Mon, 24 Oct 2016 05:24:36 +0000 (05:24 +0000)
committerMark Brown <broonie@kernel.org>
Mon, 24 Oct 2016 15:11:42 +0000 (16:11 +0100)
We can reduce struct size in certain environment.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
include/sound/soc.h

index 3d569307f1e28b576a9a33be5a25a6070a26bce1..d11f1a801ce71a224619169cf4802cacd30a5802 100644 (file)
@@ -1203,14 +1203,11 @@ struct snd_soc_pcm_runtime {
        enum snd_soc_pcm_subclass pcm_subclass;
        struct snd_pcm_ops ops;
 
-       unsigned int dev_registered:1;
-
        /* Dynamic PCM BE runtime data */
        struct snd_soc_dpcm_runtime dpcm[2];
        int fe_compr;
 
        long pmdown_time;
-       unsigned char pop_wait:1;
 
        /* runtime devices */
        struct snd_pcm *pcm;
@@ -1232,6 +1229,10 @@ struct snd_soc_pcm_runtime {
 
        unsigned int num; /* 0-based and monotonic increasing */
        struct list_head list; /* rtd list of the soc card */
+
+       /* bit field */
+       unsigned int dev_registered:1;
+       unsigned int pop_wait:1;
 };
 
 /* mixer control */