summaryrefslogtreecommitdiffstats
path: root/include/sound/pcm.h
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2015-04-27 12:20:29 +0200
committerTakashi Iwai <tiwai@suse.de>2015-04-27 12:24:49 +0200
commit782e50e0b38ff284dead13265f1c3e04004e507d (patch)
treee82d532113e774c99db77753929360152aee9707 /include/sound/pcm.h
parentd16efa0626bfd11157d4a622a24aaae98435f26d (diff)
downloadlinux-782e50e0b38ff284dead13265f1c3e04004e507d.tar.gz
linux-782e50e0b38ff284dead13265f1c3e04004e507d.tar.bz2
linux-782e50e0b38ff284dead13265f1c3e04004e507d.zip
ALSA: Close holes in struct snd_pcm_constraint_list
On a 64-bit system there is a 32-bit hole in struct snd_pcm_constraint_list and then 32-bit padding at the end. Reordering things slightly gets rid of the hole and padding, reducing the size of the struct by 50% from its original size. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound/pcm.h')
-rw-r--r--include/sound/pcm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/pcm.h b/include/sound/pcm.h
index d632809d9425..691e7ee0a510 100644
--- a/include/sound/pcm.h
+++ b/include/sound/pcm.h
@@ -274,8 +274,8 @@ struct snd_pcm_hw_constraint_ratdens {
};
struct snd_pcm_hw_constraint_list {
- unsigned int count;
const unsigned int *list;
+ unsigned int count;
unsigned int mask;
};