linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm
@ 2022-10-27 15:48 Krzysztof Kozlowski
  2022-10-27 15:48 ` [PATCH 2/3] interconnect: qcom: sc7180: drop double space Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-27 15:48 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Georgi Djakov,
	linux-arm-msm, linux-pm, linux-kernel
  Cc: Krzysztof Kozlowski

Pointers to struct qcom_icc_bcm are const, but the change was dropped
during merge.

Fixes: 016fca59f95f ("Merge branch 'icc-const' into icc-next")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/interconnect/qcom/sc7180.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/interconnect/qcom/sc7180.c b/drivers/interconnect/qcom/sc7180.c
index 35cd448efdfb..82d5e8a8c19e 100644
--- a/drivers/interconnect/qcom/sc7180.c
+++ b/drivers/interconnect/qcom/sc7180.c
@@ -369,7 +369,7 @@ static const struct qcom_icc_desc sc7180_gem_noc = {
 	.num_bcms = ARRAY_SIZE(gem_noc_bcms),
 };
 
-static struct qcom_icc_bcm *mc_virt_bcms[] = {
+static struct qcom_icc_bcm * const mc_virt_bcms[] = {
 	&bcm_acv,
 	&bcm_mc0,
 };
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/3] interconnect: qcom: sc7180: drop double space
  2022-10-27 15:48 [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm Krzysztof Kozlowski
@ 2022-10-27 15:48 ` Krzysztof Kozlowski
  2022-11-18 12:30   ` Krzysztof Kozlowski
  2022-10-27 15:48 ` [PATCH 3/3] interconnect: qcom: sc8180x: constify pointer to qcom_icc_node Krzysztof Kozlowski
  2022-10-28  7:21 ` [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm Georgi Djakov
  2 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-27 15:48 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Georgi Djakov,
	linux-arm-msm, linux-pm, linux-kernel
  Cc: Krzysztof Kozlowski

Drop double white-space.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/interconnect/qcom/sc7180.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/interconnect/qcom/sc7180.c b/drivers/interconnect/qcom/sc7180.c
index 82d5e8a8c19e..ef4e13fb4983 100644
--- a/drivers/interconnect/qcom/sc7180.c
+++ b/drivers/interconnect/qcom/sc7180.c
@@ -443,7 +443,7 @@ static struct qcom_icc_node * const qup_virt_nodes[] = {
 	[SLAVE_QUP_CORE_1] = &qup_core_slave_2,
 };
 
-static const  struct qcom_icc_desc sc7180_qup_virt = {
+static const struct qcom_icc_desc sc7180_qup_virt = {
 	.nodes = qup_virt_nodes,
 	.num_nodes = ARRAY_SIZE(qup_virt_nodes),
 	.bcms = qup_virt_bcms,
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/3] interconnect: qcom: sc8180x: constify pointer to qcom_icc_node
  2022-10-27 15:48 [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm Krzysztof Kozlowski
  2022-10-27 15:48 ` [PATCH 2/3] interconnect: qcom: sc7180: drop double space Krzysztof Kozlowski
@ 2022-10-27 15:48 ` Krzysztof Kozlowski
  2022-10-28  7:21 ` [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm Georgi Djakov
  2 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-27 15:48 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Georgi Djakov,
	linux-arm-msm, linux-pm, linux-kernel
  Cc: Krzysztof Kozlowski

Pointers to struct qcom_icc_node are const.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/interconnect/qcom/sc8180x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/interconnect/qcom/sc8180x.c b/drivers/interconnect/qcom/sc8180x.c
index 8e32ca958824..0f515bf10bd7 100644
--- a/drivers/interconnect/qcom/sc8180x.c
+++ b/drivers/interconnect/qcom/sc8180x.c
@@ -1889,7 +1889,7 @@ static struct qcom_icc_bcm * const qup_virt_bcms[] = {
 	&bcm_qup0,
 };
 
-static struct qcom_icc_node *qup_virt_nodes[] = {
+static struct qcom_icc_node * const qup_virt_nodes[] = {
 	[MASTER_QUP_CORE_0] = &mas_qup_core_0,
 	[MASTER_QUP_CORE_1] = &mas_qup_core_1,
 	[MASTER_QUP_CORE_2] = &mas_qup_core_2,
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm
  2022-10-27 15:48 [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm Krzysztof Kozlowski
  2022-10-27 15:48 ` [PATCH 2/3] interconnect: qcom: sc7180: drop double space Krzysztof Kozlowski
  2022-10-27 15:48 ` [PATCH 3/3] interconnect: qcom: sc8180x: constify pointer to qcom_icc_node Krzysztof Kozlowski
@ 2022-10-28  7:21 ` Georgi Djakov
  2 siblings, 0 replies; 6+ messages in thread
From: Georgi Djakov @ 2022-10-28  7:21 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	linux-arm-msm, linux-pm, linux-kernel

On 27.10.22 18:48, Krzysztof Kozlowski wrote:
> Pointers to struct qcom_icc_bcm are const, but the change was dropped
> during merge.

Oops, thanks for the fix!

BR,
Georgi

> Fixes: 016fca59f95f ("Merge branch 'icc-const' into icc-next")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   drivers/interconnect/qcom/sc7180.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/interconnect/qcom/sc7180.c b/drivers/interconnect/qcom/sc7180.c
> index 35cd448efdfb..82d5e8a8c19e 100644
> --- a/drivers/interconnect/qcom/sc7180.c
> +++ b/drivers/interconnect/qcom/sc7180.c
> @@ -369,7 +369,7 @@ static const struct qcom_icc_desc sc7180_gem_noc = {
>   	.num_bcms = ARRAY_SIZE(gem_noc_bcms),
>   };
>   
> -static struct qcom_icc_bcm *mc_virt_bcms[] = {
> +static struct qcom_icc_bcm * const mc_virt_bcms[] = {
>   	&bcm_acv,
>   	&bcm_mc0,
>   };


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/3] interconnect: qcom: sc7180: drop double space
  2022-10-27 15:48 ` [PATCH 2/3] interconnect: qcom: sc7180: drop double space Krzysztof Kozlowski
@ 2022-11-18 12:30   ` Krzysztof Kozlowski
  2022-11-18 12:39     ` Georgi Djakov
  0 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2022-11-18 12:30 UTC (permalink / raw)
  To: Georgi Djakov, linux-pm, linux-kernel
  Cc: Andy Gross, Konrad Dybcio, linux-arm-msm, Bjorn Andersson

On 27/10/2022 17:48, Krzysztof Kozlowski wrote:
> Drop double white-space.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  drivers/interconnect/qcom/sc7180.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Georgi,

Any comments on this and third patch? I did not receive any
applied-confirmations.

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/3] interconnect: qcom: sc7180: drop double space
  2022-11-18 12:30   ` Krzysztof Kozlowski
@ 2022-11-18 12:39     ` Georgi Djakov
  0 siblings, 0 replies; 6+ messages in thread
From: Georgi Djakov @ 2022-11-18 12:39 UTC (permalink / raw)
  To: Krzysztof Kozlowski, linux-pm, linux-kernel
  Cc: Andy Gross, Konrad Dybcio, linux-arm-msm, Bjorn Andersson

Hi Krzysztof,

On 18.11.22 14:30, Krzysztof Kozlowski wrote:
> On 27/10/2022 17:48, Krzysztof Kozlowski wrote:
>> Drop double white-space.
>>
>> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>> ---
>>   drivers/interconnect/qcom/sc7180.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Georgi,
> 
> Any comments on this and third patch? I did not receive any
> applied-confirmations.
> 

I applied them. Should be present in today's linux-next.

Thanks,
Georgi


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-11-18 12:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-27 15:48 [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm Krzysztof Kozlowski
2022-10-27 15:48 ` [PATCH 2/3] interconnect: qcom: sc7180: drop double space Krzysztof Kozlowski
2022-11-18 12:30   ` Krzysztof Kozlowski
2022-11-18 12:39     ` Georgi Djakov
2022-10-27 15:48 ` [PATCH 3/3] interconnect: qcom: sc8180x: constify pointer to qcom_icc_node Krzysztof Kozlowski
2022-10-28  7:21 ` [PATCH 1/3] interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm Georgi Djakov

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).