summaryrefslogtreecommitdiff
path: root/src/ucm/ucm_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ucm/ucm_local.h')
-rw-r--r--src/ucm/ucm_local.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ucm/ucm_local.h b/src/ucm/ucm_local.h
index 0515de17..479cc976 100644
--- a/src/ucm/ucm_local.h
+++ b/src/ucm/ucm_local.h
@@ -42,9 +42,10 @@
#define MAX_FILE 256
#define ALSA_USE_CASE_DIR ALSA_CONFIG_DIR "/ucm"
-#define SEQUENCE_ELEMENT_TYPE_CSET 1
-#define SEQUENCE_ELEMENT_TYPE_SLEEP 2
-#define SEQUENCE_ELEMENT_TYPE_EXEC 3
+#define SEQUENCE_ELEMENT_TYPE_CDEV 1
+#define SEQUENCE_ELEMENT_TYPE_CSET 2
+#define SEQUENCE_ELEMENT_TYPE_SLEEP 3
+#define SEQUENCE_ELEMENT_TYPE_EXEC 4
struct ucm_value {
struct list_head list;
@@ -57,6 +58,7 @@ struct sequence_element {
unsigned int type;
union {
long sleep; /* Sleep time in msecs if sleep element, else 0 */
+ char *cdev;
char *cset;
char *exec;
} data;