summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/device/azalia_device.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/include/device/azalia_device.h b/src/include/device/azalia_device.h
index 1562e25c48..f7c1448863 100644
--- a/src/include/device/azalia_device.h
+++ b/src/include/device/azalia_device.h
@@ -112,7 +112,12 @@ enum azalia_pin_location_2 {
LOCATION_OTHER
};
-#define AZALIA_PIN_DESC(conn, location2, location1, dev, type, color, no_presence_detect, \
+enum azalia_pin_misc {
+ JACK_PRESENCE_DETECT = 0,
+ NO_JACK_PRESENCE_DETECT,
+};
+
+#define AZALIA_PIN_DESC(conn, location2, location1, dev, type, color, misc, \
association, sequence) \
(((conn) << 30) | \
((location2) << 27) | \
@@ -120,7 +125,7 @@ enum azalia_pin_location_2 {
((dev) << 20) | \
((type) << 16) | \
((color) << 12) | \
- ((no_presence_detect) << 8) | \
+ ((misc) << 8) | \
((association) << 4) | \
((sequence) << 0))