linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson
@ 2020-06-24  6:45 Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 1/7 RESEND] irqchip/loongson-htpic: Remove redundant kfree operation Tiezhu Yang
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  6:45 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

[git send-email failed, so resend, sorry for that]

Check the return value of irq_domain_translate_onecell() and
irq_domain_translate_twocell(), do some code cleanups about
Loongson to make it more clean and readable.

v2:
  - In order to avoid git send-email failed, make the related patches
    about Loongson into a new patch series and add "Fixes" tag

Tiezhu Yang (7):
  irqchip/loongson-htpic: Remove redundant kfree operation
  irqchip/loongson-htpic: Remove unneeded select of I8259
  irqchip/loongson-htvec: Fix potential resource leak
  irqchip/loongson-htvec: Check return value of
    irq_domain_translate_onecell()
  irqchip/loongson-pch-pic: Check return value of
    irq_domain_translate_twocell()
  irqchip/loongson-pch-msi: Remove unneeded variable
  dt-bindings: interrupt-controller: Fix typos in loongson,liointc.yaml

 .../bindings/interrupt-controller/loongson,liointc.yaml   |  4 ++--
 drivers/irqchip/Kconfig                                   |  1 -
 drivers/irqchip/irq-loongson-htpic.c                      |  6 ++----
 drivers/irqchip/irq-loongson-htvec.c                      | 10 ++++++++--
 drivers/irqchip/irq-loongson-pch-msi.c                    |  7 +------
 drivers/irqchip/irq-loongson-pch-pic.c                    | 15 +++++++++------
 6 files changed, 22 insertions(+), 21 deletions(-)

-- 
2.1.0


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

* [PATCH v2 1/7 RESEND] irqchip/loongson-htpic: Remove redundant kfree operation
  2020-06-24  6:45 [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson Tiezhu Yang
@ 2020-06-24  6:45 ` Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 2/7 RESEND] irqchip/loongson-htpic: Remove unneeded select of I8259 Tiezhu Yang
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  6:45 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

In the function htpic_of_init(), when kzalloc htpic fails, it should
return -ENOMEM directly, no need to execute "goto" to kfree.

Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 drivers/irqchip/irq-loongson-htpic.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/irqchip/irq-loongson-htpic.c b/drivers/irqchip/irq-loongson-htpic.c
index dd018c2..63f7280 100644
--- a/drivers/irqchip/irq-loongson-htpic.c
+++ b/drivers/irqchip/irq-loongson-htpic.c
@@ -93,10 +93,8 @@ int __init htpic_of_init(struct device_node *node, struct device_node *parent)
 	}
 
 	htpic = kzalloc(sizeof(*htpic), GFP_KERNEL);
-	if (!htpic) {
-		err = -ENOMEM;
-		goto out_free;
-	}
+	if (!htpic)
+		return -ENOMEM;
 
 	htpic->base = of_iomap(node, 0);
 	if (!htpic->base) {
-- 
2.1.0


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

* [PATCH v2 2/7 RESEND] irqchip/loongson-htpic: Remove unneeded select of I8259
  2020-06-24  6:45 [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 1/7 RESEND] irqchip/loongson-htpic: Remove redundant kfree operation Tiezhu Yang
@ 2020-06-24  6:45 ` Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 3/7 RESEND] irqchip/loongson-htvec: Fix potential resource leak Tiezhu Yang
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  6:45 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

LOONGSON_HTPIC depends on MACH_LOONGSON64 and MACH_LOONGSON64 already
selects I8259 in arch/mips/Kconfig, so no need to select I8259 again
when config LOONGSON_HTPIC.

Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 drivers/irqchip/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig
index 29fead2..9f57aed 100644
--- a/drivers/irqchip/Kconfig
+++ b/drivers/irqchip/Kconfig
@@ -541,7 +541,6 @@ config LOONGSON_HTPIC
 	default y
 	select IRQ_DOMAIN
 	select GENERIC_IRQ_CHIP
-	select I8259
 	help
 	  Support for the Loongson-3 HyperTransport PIC Controller.
 
-- 
2.1.0


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

* [PATCH v2 3/7 RESEND] irqchip/loongson-htvec: Fix potential resource leak
  2020-06-24  6:45 [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 1/7 RESEND] irqchip/loongson-htpic: Remove redundant kfree operation Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 2/7 RESEND] irqchip/loongson-htpic: Remove unneeded select of I8259 Tiezhu Yang
@ 2020-06-24  6:45 ` Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 4/7 RESEND] irqchip/loongson-htvec: Check return value of irq_domain_translate_onecell() Tiezhu Yang
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  6:45 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

There exists potential resource leak in the error path, fix it.

Fixes: 818e915fbac5 ("irqchip: Add Loongson HyperTransport Vector support")
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 drivers/irqchip/irq-loongson-htvec.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-loongson-htvec.c b/drivers/irqchip/irq-loongson-htvec.c
index 1ece933..b36d403 100644
--- a/drivers/irqchip/irq-loongson-htvec.c
+++ b/drivers/irqchip/irq-loongson-htvec.c
@@ -192,7 +192,7 @@ static int htvec_of_init(struct device_node *node,
 	if (!priv->htvec_domain) {
 		pr_err("Failed to create IRQ domain\n");
 		err = -ENOMEM;
-		goto iounmap_base;
+		goto irq_dispose;
 	}
 
 	htvec_reset(priv);
@@ -203,6 +203,9 @@ static int htvec_of_init(struct device_node *node,
 
 	return 0;
 
+irq_dispose:
+	for (; i > 0; i--)
+		irq_dispose_mapping(parent_irq[i - 1]);
 iounmap_base:
 	iounmap(priv->base);
 free_priv:
-- 
2.1.0


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

* [PATCH v2 4/7 RESEND] irqchip/loongson-htvec: Check return value of irq_domain_translate_onecell()
  2020-06-24  6:45 [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson Tiezhu Yang
                   ` (2 preceding siblings ...)
  2020-06-24  6:45 ` [PATCH v2 3/7 RESEND] irqchip/loongson-htvec: Fix potential resource leak Tiezhu Yang
@ 2020-06-24  6:45 ` Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 5/7 RESEND] irqchip/loongson-pch-pic: Check return value of irq_domain_translate_twocell() Tiezhu Yang
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  6:45 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

Check the return value of irq_domain_translate_onecell() due to
it may returns -EINVAL if failed.

Fixes: 818e915fbac5 ("irqchip: Add Loongson HyperTransport Vector support")
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 drivers/irqchip/irq-loongson-htvec.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-loongson-htvec.c b/drivers/irqchip/irq-loongson-htvec.c
index b36d403..720cf96 100644
--- a/drivers/irqchip/irq-loongson-htvec.c
+++ b/drivers/irqchip/irq-loongson-htvec.c
@@ -109,11 +109,14 @@ static struct irq_chip htvec_irq_chip = {
 static int htvec_domain_alloc(struct irq_domain *domain, unsigned int virq,
 			      unsigned int nr_irqs, void *arg)
 {
+	int ret;
 	unsigned long hwirq;
 	unsigned int type, i;
 	struct htvec *priv = domain->host_data;
 
-	irq_domain_translate_onecell(domain, arg, &hwirq, &type);
+	ret = irq_domain_translate_onecell(domain, arg, &hwirq, &type);
+	if (ret)
+		return ret;
 
 	for (i = 0; i < nr_irqs; i++) {
 		irq_domain_set_info(domain, virq + i, hwirq + i, &htvec_irq_chip,
-- 
2.1.0


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

* [PATCH v2 5/7 RESEND] irqchip/loongson-pch-pic: Check return value of irq_domain_translate_twocell()
  2020-06-24  6:45 [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson Tiezhu Yang
                   ` (3 preceding siblings ...)
  2020-06-24  6:45 ` [PATCH v2 4/7 RESEND] irqchip/loongson-htvec: Check return value of irq_domain_translate_onecell() Tiezhu Yang
@ 2020-06-24  6:45 ` Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 6/7 RESEND] irqchip/loongson-pch-msi: Remove unneeded variable Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 7/7 RESEND] dt-bindings: interrupt-controller: Fix typos in loongson,liointc.yaml Tiezhu Yang
  6 siblings, 0 replies; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  6:45 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

Check the return value of irq_domain_translate_twocell() due to
it may returns -EINVAL if failed and use variable fwspec for it,
and then use a new variable parent_fwspec which is proper for
irq_domain_alloc_irqs_parent().

Fixes: ef8c01eb64ca ("irqchip: Add Loongson PCH PIC controller")
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 drivers/irqchip/irq-loongson-pch-pic.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/drivers/irqchip/irq-loongson-pch-pic.c b/drivers/irqchip/irq-loongson-pch-pic.c
index 2a05b93..016f32c 100644
--- a/drivers/irqchip/irq-loongson-pch-pic.c
+++ b/drivers/irqchip/irq-loongson-pch-pic.c
@@ -135,16 +135,19 @@ static int pch_pic_alloc(struct irq_domain *domain, unsigned int virq,
 	int err;
 	unsigned int type;
 	unsigned long hwirq;
-	struct irq_fwspec fwspec;
+	struct irq_fwspec *fwspec = arg;
+	struct irq_fwspec parent_fwspec;
 	struct pch_pic *priv = domain->host_data;
 
-	irq_domain_translate_twocell(domain, arg, &hwirq, &type);
+	err = irq_domain_translate_twocell(domain, fwspec, &hwirq, &type);
+	if (err)
+		return err;
 
-	fwspec.fwnode = domain->parent->fwnode;
-	fwspec.param_count = 1;
-	fwspec.param[0] = hwirq + priv->ht_vec_base;
+	parent_fwspec.fwnode = domain->parent->fwnode;
+	parent_fwspec.param_count = 1;
+	parent_fwspec.param[0] = hwirq + priv->ht_vec_base;
 
-	err = irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec);
+	err = irq_domain_alloc_irqs_parent(domain, virq, 1, &parent_fwspec);
 	if (err)
 		return err;
 
-- 
2.1.0


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

* [PATCH v2 6/7 RESEND] irqchip/loongson-pch-msi: Remove unneeded variable
  2020-06-24  6:45 [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson Tiezhu Yang
                   ` (4 preceding siblings ...)
  2020-06-24  6:45 ` [PATCH v2 5/7 RESEND] irqchip/loongson-pch-pic: Check return value of irq_domain_translate_twocell() Tiezhu Yang
@ 2020-06-24  6:45 ` Tiezhu Yang
  2020-06-24  6:45 ` [PATCH v2 7/7 RESEND] dt-bindings: interrupt-controller: Fix typos in loongson,liointc.yaml Tiezhu Yang
  6 siblings, 0 replies; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  6:45 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

irq_domain_alloc_irqs_parent() returns 0 on success and non-zero value
on failure, it is redudant to check its non-zero return value and then
return it, so just remove the variable "ret" and return directly in the
function pch_msi_parent_domain_alloc().

Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 drivers/irqchip/irq-loongson-pch-msi.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/irqchip/irq-loongson-pch-msi.c b/drivers/irqchip/irq-loongson-pch-msi.c
index 50becd2..12aeeab 100644
--- a/drivers/irqchip/irq-loongson-pch-msi.c
+++ b/drivers/irqchip/irq-loongson-pch-msi.c
@@ -100,17 +100,12 @@ static int pch_msi_parent_domain_alloc(struct irq_domain *domain,
 					unsigned int virq, int hwirq)
 {
 	struct irq_fwspec fwspec;
-	int ret;
 
 	fwspec.fwnode = domain->parent->fwnode;
 	fwspec.param_count = 1;
 	fwspec.param[0] = hwirq;
 
-	ret = irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec);
-	if (ret)
-		return ret;
-
-	return 0;
+	return irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec);
 }
 
 static int pch_msi_middle_domain_alloc(struct irq_domain *domain,
-- 
2.1.0


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

* [PATCH v2 7/7 RESEND] dt-bindings: interrupt-controller: Fix typos in loongson,liointc.yaml
  2020-06-24  6:45 [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson Tiezhu Yang
                   ` (5 preceding siblings ...)
  2020-06-24  6:45 ` [PATCH v2 6/7 RESEND] irqchip/loongson-pch-msi: Remove unneeded variable Tiezhu Yang
@ 2020-06-24  6:45 ` Tiezhu Yang
  2020-06-24  8:42   ` Sergei Shtylyov
  6 siblings, 1 reply; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  6:45 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

Fix the following two typos in loongson,liointc.yaml:
fron -> from
it's -> its

Fixes: b6280c8bb6f5 ("dt-bindings: interrupt-controller: Add Loongson LIOINTC")
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 .../devicetree/bindings/interrupt-controller/loongson,liointc.yaml    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml b/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml
index b1db21e..13908ca 100644
--- a/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml
+++ b/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml
@@ -51,8 +51,8 @@ properties:
     description: |
       This property points how the children interrupts will be mapped into CPU
       interrupt lines. Each cell refers to a parent interrupt line from 0 to 3
-      and each bit in the cell refers to a children interrupt fron 0 to 31.
-      If a CPU interrupt line didn't connected with liointc, then keep it's
+      and each bit in the cell refers to a children interrupt from 0 to 31.
+      If a CPU interrupt line didn't connected with liointc, then keep its
       cell with zero.
     $ref: /schemas/types.yaml#/definitions/uint32-array
     minItems: 4
-- 
2.1.0


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

* Re: [PATCH v2 7/7 RESEND] dt-bindings: interrupt-controller: Fix typos in loongson,liointc.yaml
  2020-06-24  6:45 ` [PATCH v2 7/7 RESEND] dt-bindings: interrupt-controller: Fix typos in loongson,liointc.yaml Tiezhu Yang
@ 2020-06-24  8:42   ` Sergei Shtylyov
  2020-06-24  9:05     ` Tiezhu Yang
  0 siblings, 1 reply; 10+ messages in thread
From: Sergei Shtylyov @ 2020-06-24  8:42 UTC (permalink / raw)
  To: Tiezhu Yang, Thomas Gleixner, Jason Cooper, Marc Zyngier, Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

Hello!

On 24.06.2020 9:45, Tiezhu Yang wrote:

> Fix the following two typos in loongson,liointc.yaml:
> fron -> from
> it's -> its
> 
> Fixes: b6280c8bb6f5 ("dt-bindings: interrupt-controller: Add Loongson LIOINTC")
> Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
> ---
>   .../devicetree/bindings/interrupt-controller/loongson,liointc.yaml    | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml b/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml
> index b1db21e..13908ca 100644
> --- a/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml
> +++ b/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml
> @@ -51,8 +51,8 @@ properties:
>       description: |
>         This property points how the children interrupts will be mapped into CPU
>         interrupt lines. Each cell refers to a parent interrupt line from 0 to 3
> -      and each bit in the cell refers to a children interrupt fron 0 to 31.
> -      If a CPU interrupt line didn't connected with liointc, then keep it's
> +      and each bit in the cell refers to a children interrupt from 0 to 31.
> +      If a CPU interrupt line didn't connected with liointc, then keep its

    "Connect", while you're at it?

>         cell with zero.
>       $ref: /schemas/types.yaml#/definitions/uint32-array
>       minItems: 4

MBR, Sergei

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

* Re: [PATCH v2 7/7 RESEND] dt-bindings: interrupt-controller: Fix typos in loongson,liointc.yaml
  2020-06-24  8:42   ` Sergei Shtylyov
@ 2020-06-24  9:05     ` Tiezhu Yang
  0 siblings, 0 replies; 10+ messages in thread
From: Tiezhu Yang @ 2020-06-24  9:05 UTC (permalink / raw)
  To: Sergei Shtylyov, Thomas Gleixner, Jason Cooper, Marc Zyngier,
	Rob Herring
  Cc: Huacai Chen, Jiaxun Yang, linux-kernel, devicetree, linux-mips,
	Xuefeng Li

On 06/24/2020 04:42 PM, Sergei Shtylyov wrote:
> Hello!
>
> On 24.06.2020 9:45, Tiezhu Yang wrote:
>
>> Fix the following two typos in loongson,liointc.yaml:
>> fron -> from
>> it's -> its
>>
>> Fixes: b6280c8bb6f5 ("dt-bindings: interrupt-controller: Add Loongson 
>> LIOINTC")
>> Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
>> ---
>> .../devicetree/bindings/interrupt-controller/loongson,liointc.yaml | 
>> 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git 
>> a/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml 
>> b/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml 
>>
>> index b1db21e..13908ca 100644
>> --- 
>> a/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml
>> +++ 
>> b/Documentation/devicetree/bindings/interrupt-controller/loongson,liointc.yaml
>> @@ -51,8 +51,8 @@ properties:
>>       description: |
>>         This property points how the children interrupts will be 
>> mapped into CPU
>>         interrupt lines. Each cell refers to a parent interrupt line 
>> from 0 to 3
>> -      and each bit in the cell refers to a children interrupt fron 0 
>> to 31.
>> -      If a CPU interrupt line didn't connected with liointc, then 
>> keep it's
>> +      and each bit in the cell refers to a children interrupt from 0 
>> to 31.
>> +      If a CPU interrupt line didn't connected with liointc, then 
>> keep its
>
>    "Connect", while you're at it?

OK, thank you.
I will do it in the next version, maybe some days later.

>
>>         cell with zero.
>>       $ref: /schemas/types.yaml#/definitions/uint32-array
>>       minItems: 4
>
> MBR, Sergei


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

end of thread, other threads:[~2020-06-24  9:05 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-24  6:45 [PATCH v2 0/7 RESEND] irqchip: Fix some issues and do some code cleanups about Loongson Tiezhu Yang
2020-06-24  6:45 ` [PATCH v2 1/7 RESEND] irqchip/loongson-htpic: Remove redundant kfree operation Tiezhu Yang
2020-06-24  6:45 ` [PATCH v2 2/7 RESEND] irqchip/loongson-htpic: Remove unneeded select of I8259 Tiezhu Yang
2020-06-24  6:45 ` [PATCH v2 3/7 RESEND] irqchip/loongson-htvec: Fix potential resource leak Tiezhu Yang
2020-06-24  6:45 ` [PATCH v2 4/7 RESEND] irqchip/loongson-htvec: Check return value of irq_domain_translate_onecell() Tiezhu Yang
2020-06-24  6:45 ` [PATCH v2 5/7 RESEND] irqchip/loongson-pch-pic: Check return value of irq_domain_translate_twocell() Tiezhu Yang
2020-06-24  6:45 ` [PATCH v2 6/7 RESEND] irqchip/loongson-pch-msi: Remove unneeded variable Tiezhu Yang
2020-06-24  6:45 ` [PATCH v2 7/7 RESEND] dt-bindings: interrupt-controller: Fix typos in loongson,liointc.yaml Tiezhu Yang
2020-06-24  8:42   ` Sergei Shtylyov
2020-06-24  9:05     ` Tiezhu Yang

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