* [PATCH] power: sequencing: qcom-wcn: Fix bluetooth-wifi copypasta for WCN6855
@ 2025-06-25 15:55 Konrad Dybcio
2025-06-25 19:14 ` Bartosz Golaszewski
2025-06-30 7:11 ` Bartosz Golaszewski
0 siblings, 2 replies; 4+ messages in thread
From: Konrad Dybcio @ 2025-06-25 15:55 UTC (permalink / raw)
To: Bartosz Golaszewski, Dmitry Baryshkov
Cc: Marijn Suijten, Bartosz Golaszewski, linux-pm, linux-kernel,
Konrad Dybcio
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
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 <konrad.dybcio@oss.qualcomm.com>
---
drivers/power/sequencing/pwrseq-qcom-wcn.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c
index e8f5030f2639a69254ad5efe0a313d2f3d10fa1d..7d8d6b3407495c28a780d5bb0668b2b35837b48a 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,
---
base-commit: 2ae2aaafb21454f4781c30734959cf223ab486ef
change-id: 20250625-topic-wcn6855_pwrseq-07706f3b3cd8
Best regards,
--
Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] power: sequencing: qcom-wcn: Fix bluetooth-wifi copypasta for WCN6855
2025-06-25 15:55 [PATCH] power: sequencing: qcom-wcn: Fix bluetooth-wifi copypasta for WCN6855 Konrad Dybcio
@ 2025-06-25 19:14 ` Bartosz Golaszewski
2025-06-26 8:42 ` Konrad Dybcio
2025-06-30 7:11 ` Bartosz Golaszewski
1 sibling, 1 reply; 4+ messages in thread
From: Bartosz Golaszewski @ 2025-06-25 19:14 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Dmitry Baryshkov, Marijn Suijten, Bartosz Golaszewski, linux-pm,
linux-kernel, Konrad Dybcio
On Wed, Jun 25, 2025 at 5:55 PM Konrad Dybcio <konradybcio@kernel.org> wrote:
>
> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> 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 <konrad.dybcio@oss.qualcomm.com>
> ---
> drivers/power/sequencing/pwrseq-qcom-wcn.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c
> index e8f5030f2639a69254ad5efe0a313d2f3d10fa1d..7d8d6b3407495c28a780d5bb0668b2b35837b48a 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,
>
> ---
Thanks for the catch. Unlike target names, the unit names are mostly
for human convenience. That's why it didn't really break anything. If
you have no objections, I will queue it for v6.17 as I have already a
bunch of changes queued up and there's no point bothering Torvalds
with a one-liner that's not urgent.
Bartosz
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] power: sequencing: qcom-wcn: Fix bluetooth-wifi copypasta for WCN6855
2025-06-25 19:14 ` Bartosz Golaszewski
@ 2025-06-26 8:42 ` Konrad Dybcio
0 siblings, 0 replies; 4+ messages in thread
From: Konrad Dybcio @ 2025-06-26 8:42 UTC (permalink / raw)
To: Bartosz Golaszewski, Konrad Dybcio
Cc: Dmitry Baryshkov, Marijn Suijten, Bartosz Golaszewski, linux-pm,
linux-kernel
On 6/25/25 9:14 PM, Bartosz Golaszewski wrote:
> On Wed, Jun 25, 2025 at 5:55 PM Konrad Dybcio <konradybcio@kernel.org> wrote:
>>
>> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>>
>> 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 <konrad.dybcio@oss.qualcomm.com>
>> ---
>> drivers/power/sequencing/pwrseq-qcom-wcn.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/power/sequencing/pwrseq-qcom-wcn.c b/drivers/power/sequencing/pwrseq-qcom-wcn.c
>> index e8f5030f2639a69254ad5efe0a313d2f3d10fa1d..7d8d6b3407495c28a780d5bb0668b2b35837b48a 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,
>>
>> ---
>
> Thanks for the catch. Unlike target names, the unit names are mostly
> for human convenience. That's why it didn't really break anything. If
> you have no objections, I will queue it for v6.17 as I have already a
> bunch of changes queued up and there's no point bothering Torvalds
> with a one-liner that's not urgent.
No worries
Konrad
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] power: sequencing: qcom-wcn: Fix bluetooth-wifi copypasta for WCN6855
2025-06-25 15:55 [PATCH] power: sequencing: qcom-wcn: Fix bluetooth-wifi copypasta for WCN6855 Konrad Dybcio
2025-06-25 19:14 ` Bartosz Golaszewski
@ 2025-06-30 7:11 ` Bartosz Golaszewski
1 sibling, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2025-06-30 7:11 UTC (permalink / raw)
To: Bartosz Golaszewski, Dmitry Baryshkov, Konrad Dybcio
Cc: Bartosz Golaszewski, Marijn Suijten, linux-pm, linux-kernel,
Konrad Dybcio
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
On Wed, 25 Jun 2025 17:55:43 +0200, Konrad Dybcio wrote:
> Prevent a name conflict (which is surprisingly not caught by the
> framework).
>
>
Applied, thanks!
[1/1] power: sequencing: qcom-wcn: Fix bluetooth-wifi copypasta for WCN6855
https://git.kernel.org/brgl/linux/c/07d59dec6795428983a840de85aa02febaf7e01b
Best regards,
--
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-06-30 7:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-25 15:55 [PATCH] power: sequencing: qcom-wcn: Fix bluetooth-wifi copypasta for WCN6855 Konrad Dybcio
2025-06-25 19:14 ` Bartosz Golaszewski
2025-06-26 8:42 ` Konrad Dybcio
2025-06-30 7:11 ` Bartosz Golaszewski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).