From: Konrad Dybcio Date: Wed, 25 Jun 2025 15:55:43 +0000 (+0200) Subject: power: sequencing: qcom-wcn: fix bluetooth-wifi copypasta for WCN6855 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07d59dec6795428983a840de85aa02febaf7e01b;p=thirdparty%2Fkernel%2Flinux.git power: sequencing: qcom-wcn: fix bluetooth-wifi copypasta for WCN6855 Prevent a name conflict (which is surprisingly not caught by the framework). Fixes: bd4c8bafcf50 ("power: sequencing: qcom-wcn: improve support for wcn6855") Signed-off-by: Konrad Dybcio Link: https://lore.kernel.org/r/20250625-topic-wcn6855_pwrseq-v1-1-cfb96d599ff8@oss.qualcomm.com Signed-off-by: Bartosz Golaszewski --- diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c index f14801b4c28e5..663d9a5370653 100644 --- a/drivers/power/sequencing/pwrseq-qcom-wcn.c +++ b/drivers/power/sequencing/pwrseq-qcom-wcn.c @@ -155,7 +155,7 @@ static const struct pwrseq_unit_data pwrseq_qcom_wcn_bt_unit_data = { }; static const struct pwrseq_unit_data pwrseq_qcom_wcn6855_bt_unit_data = { - .name = "wlan-enable", + .name = "bluetooth-enable", .deps = pwrseq_qcom_wcn6855_unit_deps, .enable = pwrseq_qcom_wcn_bt_enable, .disable = pwrseq_qcom_wcn_bt_disable,