aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2014-07-05 00:59:11 +0200
committerPaul Kocialkowski <contact@paulk.fr>2014-07-05 00:59:11 +0200
commitca19c4c610f7aaf45a5539b3597092d859733ec0 (patch)
tree779c52af02d4ecb3bc3bb165153026d0e0303a79
parent8cc083b403632c2b929271e17f1e77ff83e0f7cd (diff)
downloadexternal_libsamsung-ipc-ca19c4c610f7aaf45a5539b3597092d859733ec0.zip
external_libsamsung-ipc-ca19c4c610f7aaf45a5539b3597092d859733ec0.tar.gz
external_libsamsung-ipc-ca19c4c610f7aaf45a5539b3597092d859733ec0.tar.bz2
snd: Proper missing structures
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
-rw-r--r--include/snd.h14
1 files changed, 13 insertions, 1 deletions
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