diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2016-10-24 05:25:19 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-10-24 16:11:42 +0100 |
commit | 39b2238e2c4b5a34f53871902458a87729c88ae6 (patch) | |
tree | 931dbc283b12af218fa418c4c33a9f66896f324f | |
parent | a7df0d3b455cb235926f53e02895d94fccba1e14 (diff) | |
download | linux-stable-39b2238e2c4b5a34f53871902458a87729c88ae6.tar.gz linux-stable-39b2238e2c4b5a34f53871902458a87729c88ae6.tar.bz2 linux-stable-39b2238e2c4b5a34f53871902458a87729c88ae6.zip |
ASoC: bunch up bit field for snd_soc_dai
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>
-rw-r--r-- | include/sound/soc-dai.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sound/soc-dai.h b/include/sound/soc-dai.h index 964b7de1a1cc..d0ae96b615ad 100644 --- a/include/sound/soc-dai.h +++ b/include/sound/soc-dai.h @@ -268,8 +268,9 @@ struct snd_soc_dai { unsigned int symmetric_rates:1; unsigned int symmetric_channels:1; unsigned int symmetric_samplebits:1; + unsigned int probed:1; + unsigned int active; - unsigned char probed:1; struct snd_soc_dapm_widget *playback_widget; struct snd_soc_dapm_widget *capture_widget; |