|
@@ -1964,7 +1964,7 @@ int wcd_mbhc_init(struct wcd_mbhc *mbhc, struct snd_soc_component *component,
|
|
|
if (mbhc->headset_jack.jack == NULL) {
|
|
|
ret = snd_soc_card_jack_new(component->card,
|
|
|
"Headset Jack", WCD_MBHC_JACK_MASK,
|
|
|
- &mbhc->headset_jack, NULL, 0);
|
|
|
+ &mbhc->headset_jack);
|
|
|
if (ret) {
|
|
|
pr_err("%s: Failed to create new jack\n", __func__);
|
|
|
return ret;
|
|
@@ -1973,7 +1973,7 @@ int wcd_mbhc_init(struct wcd_mbhc *mbhc, struct snd_soc_component *component,
|
|
|
ret = snd_soc_card_jack_new(component->card,
|
|
|
"Button Jack",
|
|
|
WCD_MBHC_JACK_BUTTON_MASK,
|
|
|
- &mbhc->button_jack, NULL, 0);
|
|
|
+ &mbhc->button_jack);
|
|
|
if (ret) {
|
|
|
pr_err("Failed to create new jack\n");
|
|
|
return ret;
|