Prechádzať zdrojové kódy

asoc: add conditional compilation for wcdusb_ss APIs

add conditional compilation for wcdusb_ss APIs.

Change-Id: Ie70f4a737d9a93e3ebb4d9c7b59e08d94c13d20c
Signed-off-by: Prasad Kumpatla <[email protected]>
Prasad Kumpatla 2 rokov pred
rodič
commit
7880a551f1
1 zmenil súbory, kde vykonal 7 pridanie a 1 odobranie
  1. 7 1
      asoc/pineapple.c

+ 7 - 1
asoc/pineapple.c

@@ -14,7 +14,9 @@
 #include <linux/module.h>
 #include <linux/input.h>
 #include <linux/of_device.h>
+#if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
 #include <linux/soc/qcom/wcd939x-i2c.h>
+#endif
 #include <linux/pm_qos.h>
 #include <sound/control.h>
 #include <sound/core.h>
@@ -125,6 +127,7 @@ static struct wcd_mbhc_config wcd_mbhc_cfg = {
 
 static bool msm_usbc_swap_gnd_mic(struct snd_soc_component *component, bool active)
 {
+	bool ret = false;
 	struct snd_soc_card *card = component->card;
 	struct msm_asoc_mach_data *pdata =
 				snd_soc_card_get_drvdata(card);
@@ -132,8 +135,11 @@ static bool msm_usbc_swap_gnd_mic(struct snd_soc_component *component, bool acti
 	if (!pdata->wcd_usbss_handle)
 		return false;
 
-	return wcd_usbss_switch_update(WCD_USBSS_GND_MIC_SWAP_AATC,
+#if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
+	ret = wcd_usbss_switch_update(WCD_USBSS_GND_MIC_SWAP_AATC,
 								WCD_USBSS_CABLE_CONNECT);
+#endif
+	return ret;
 }
 
 static void msm_parse_upd_configuration(struct platform_device *pdev,