Browse Source

extcon: arizona: Add device binding to enable ADC mode micdet

Add a simple boolean binding to turn on and off the use of ADC
microphone detection mode to determine 3/4 pole jack.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Charles Keepax 9 năm trước cách đây
mục cha
commit
2e87b7a8be
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      drivers/extcon/extcon-arizona.c

+ 3 - 0
drivers/extcon/extcon-arizona.c

@@ -1236,6 +1236,9 @@ static int arizona_extcon_device_get_pdata(struct arizona *arizona)
 	pdata->micd_force_micbias = device_property_read_bool(arizona->dev,
 	pdata->micd_force_micbias = device_property_read_bool(arizona->dev,
 						"wlf,micd-force-micbias");
 						"wlf,micd-force-micbias");
 
 
+	pdata->micd_software_compare = device_property_read_bool(arizona->dev,
+						"wlf,micd-software-compare");
+
 	return 0;
 	return 0;
 }
 }