Skip to content

Commit 3d5f968

Browse files
committed
Merge tag 'pwrseq-fixes-for-v6.11-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux
Pull power sequencing fix from Bartosz Golaszewski: - request the wlan-enable GPIO "as-is" to fix an issue with the wifi module being already powered up before linux boots * tag 'pwrseq-fixes-for-v6.11-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: power: sequencing: request the WLAN enable GPIO as-is
2 parents 3902f60 + a9aaf1f commit 3d5f968

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/power/sequencing/pwrseq-qcom-wcn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ static int pwrseq_qcom_wcn_probe(struct platform_device *pdev)
283283
"Failed to get the Bluetooth enable GPIO\n");
284284

285285
ctx->wlan_gpio = devm_gpiod_get_optional(dev, "wlan-enable",
286-
GPIOD_OUT_LOW);
286+
GPIOD_ASIS);
287287
if (IS_ERR(ctx->wlan_gpio))
288288
return dev_err_probe(dev, PTR_ERR(ctx->wlan_gpio),
289289
"Failed to get the WLAN enable GPIO\n");

0 commit comments

Comments
 (0)