From ca19c4c610f7aaf45a5539b3597092d859733ec0 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Sat, 5 Jul 2014 00:59:11 +0200 Subject: snd: Proper missing structures Signed-off-by: Paul Kocialkowski --- include/snd.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/include/snd.h b/include/snd.h index 970fe68..dfa1993 100644 --- a/include/snd.h +++ b/include/snd.h @@ -58,10 +58,22 @@ */ struct ipc_snd_spkr_volume_ctrl_data { - unsigned char type; + unsigned char type; // IPC_SND_VOLUME_TYPE unsigned char volume; } __attribute__((__packed__)); +struct ipc_snd_mic_mute_ctrl_data { + unsigned char mute; +} __attribute__((__packed__)); + +struct ipc_snd_audio_path_ctrl_data { + unsigned char path; // IPC_SND_AUDIO_PATH +} __attribute__((__packed__)); + +struct ipc_snd_clock_ctrl_data { + unsigned char sync; +} __attribute__((__packed__)); + #endif // vim:ts=4:sw=4:expandtab -- cgit v1.1