* [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART
2026-02-13 9:33 [PATCH v1 0/2] LRW UART: Patch series for LRW UART driver LiuQingtao
@ 2026-02-13 9:33 ` LiuQingtao
2026-02-13 10:00 ` Krzysztof Kozlowski
2026-02-13 14:24 ` Krzysztof Kozlowski
0 siblings, 2 replies; 6+ messages in thread
From: LiuQingtao @ 2026-02-13 9:33 UTC (permalink / raw)
To: gregkh
Cc: jirislaby, robh, krzk+dt, conor+dt, neil.armstrong,
bjorn.andersson, marex, dev, mani, prabhakar.mahadev-lad.rj,
linux-serial, linux-riscv, liu.wenhong35, liu.qingtao2, hu.yuye,
dai.hualiang, deng.weixian, jia.yunxiang, bai.lu5, yang.susheng,
shen.lin1, tan.hu, zuo.jiang
From: Wenhong Liu <liu.wenhong35@zte.com.cn>
Add documentation for LRW UART devicetree bindings.
Signed-off-by: Wenhong Liu <liu.wenhong35@zte.com.cn>
Signed-off-by: Qingtao Liu <liu.qingtao2@zte.com.cn>
---
.../bindings/serial/lrw,lrw-uart.yaml | 49 +++++++++++++++++++
.../devicetree/bindings/vendor-prefixes.yaml | 2 +
MAINTAINERS | 7 +++
3 files changed, 58 insertions(+)
create mode 100644 Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
diff --git a/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml b/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
new file mode 100644
index 000000000000..a2d41c278c4f
--- /dev/null
+++ b/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
@@ -0,0 +1,49 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/serial/lrw-uart.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: LRW serial UART
+
+maintainers:
+ - Wenhong Liu <liu.wenhong35@zte.com.cn>
+ - Qingtao Liu <liu.qingtao2@zte.com.cn>
+
+description: |
+ Should be something similar to "lrw,<chip>-uart"
+ for the UART as integrated on a particular chip, It supports
+ multiple CPU architectures, currently including e.g. RISC-V and ARM.
+
+properties:
+ compatible:
+ const: lrw,lrw-uart
+
+ reg:
+ maxItems: 1
+
+ interrupts:
+ maxItems: 1
+
+ clocks:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+ - current-speed
+ - clocks
+
+additionalProperties: false
+
+examples:
+ - |
+ uart0: serial@e0001800 {
+ compatible = "lrw,lrw-uart";
+ interrupt-parent = <&aplic0>;
+ interrupts = <0x12 0x4>;
+ reg = <0xe0001800 0x100>;
+ clocks = <&bar_clk>;
+ current-speed = <115200>;
+ };
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
index ee7fd3cfe203..ec9bf262f466 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
+++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
@@ -961,6 +961,8 @@ patternProperties:
description: Loongson Technology Corporation Limited
"^loongmasses,.*":
description: Nanjing Loongmasses Ltd.
+ "^lrw,.*":
+ description: LRW Corp.
"^lsi,.*":
description: LSI Corp. (LSI Logic)
"^luckfox,.*":
diff --git a/MAINTAINERS b/MAINTAINERS
index 26898ca27409..ad6acbe24544 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -15035,6 +15035,13 @@ L: linux-edac@vger.kernel.org
S: Maintained
F: drivers/edac/loongson_edac.c
+LRW SERIAL DRIVER
+M: Wenhong Liu <liu.wenhong35@zte.com.cn>
+R: Qingtao Liu <liu.qingtao2@zte.com.cn>
+L: linux-serial@vger.kernel.org
+S: Maintained
+F: Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
+
LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
M: Sathya Prakash <sathya.prakash@broadcom.com>
M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
--
2.27.0
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART
2026-02-13 9:33 ` [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART LiuQingtao
@ 2026-02-13 10:00 ` Krzysztof Kozlowski
2026-02-13 14:24 ` Krzysztof Kozlowski
1 sibling, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2026-02-13 10:00 UTC (permalink / raw)
To: LiuQingtao, gregkh
Cc: jirislaby, robh, krzk+dt, conor+dt, neil.armstrong,
bjorn.andersson, marex, dev, mani, prabhakar.mahadev-lad.rj,
linux-serial, linux-riscv, liu.wenhong35, liu.qingtao2, hu.yuye,
dai.hualiang, deng.weixian, jia.yunxiang, bai.lu5, yang.susheng,
shen.lin1, tan.hu, zuo.jiang
On 13/02/2026 10:33, LiuQingtao wrote:
> From: Wenhong Liu <liu.wenhong35@zte.com.cn>
>
> Add documentation for LRW UART devicetree bindings.
>
> Signed-off-by: Wenhong Liu <liu.wenhong35@zte.com.cn>
> Signed-off-by: Qingtao Liu <liu.qingtao2@zte.com.cn>
Please use subject prefixes matching the subsystem. You can get them for
example with `git log --oneline -- DIRECTORY_OR_FILE` on the directory
your patch is touching. For bindings, the preferred subjects are
explained here:
https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters
A nit, subject: drop second/last, redundant "bindings". The
"dt-bindings" prefix is already stating that these are bindings.
See also:
https://elixir.bootlin.com/linux/v6.17-rc3/source/Documentation/devicetree/bindings/submitting-patches.rst#L18
> ---
> .../bindings/serial/lrw,lrw-uart.yaml | 49 +++++++++++++++++++
> .../devicetree/bindings/vendor-prefixes.yaml | 2 +
> MAINTAINERS | 7 +++
> 3 files changed, 58 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
>
> diff --git a/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml b/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
> new file mode 100644
> index 000000000000..a2d41c278c4f
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
> @@ -0,0 +1,49 @@
> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> +
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/serial/lrw-uart.yaml#
Never tested, NAK. There are several other issues here, but I am not
going through rest of review if you did not bother to even build test
it. Please open any other recent binding and apply same style here
(filename, descriptions etc), so you won't be repeating SAME mistakes.
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: LRW serial UART
> +
> +maintainers:
> + - Wenhong Liu <liu.wenhong35@zte.com.cn>
> + - Qingtao Liu <liu.qingtao2@zte.com.cn>
> +
> +description: |
> + Should be something similar to "lrw,<chip>-uart"
> + for the UART as integrated on a particular chip, It supports
> + multiple CPU architectures, currently including e.g. RISC-V and ARM.
> +
> +properties:
> + compatible:
> + const: lrw,lrw-uart
No way lrw is a chip if this is a company.
> +
> + reg:
> + maxItems: 1
> +
> + interrupts:
> + maxItems: 1
> +
> + clocks:
> + maxItems: 1
> +
> +required:
> + - compatible
> + - reg
> + - current-speed
> + - clocks
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + uart0: serial@e0001800 {
> + compatible = "lrw,lrw-uart";
> + interrupt-parent = <&aplic0>;
> + interrupts = <0x12 0x4>;
> + reg = <0xe0001800 0x100>;
> + clocks = <&bar_clk>;
> + current-speed = <115200>;
> + };
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> index ee7fd3cfe203..ec9bf262f466 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> @@ -961,6 +961,8 @@ patternProperties:
> description: Loongson Technology Corporation Limited
> "^loongmasses,.*":
> description: Nanjing Loongmasses Ltd.
> + "^lrw,.*":
> + description: LRW Corp.
What is the website/domain address?
Best regards,
Krzysztof
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART
2026-02-13 9:33 ` [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART LiuQingtao
2026-02-13 10:00 ` Krzysztof Kozlowski
@ 2026-02-13 14:24 ` Krzysztof Kozlowski
1 sibling, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2026-02-13 14:24 UTC (permalink / raw)
To: LiuQingtao, gregkh
Cc: jirislaby, robh, krzk+dt, conor+dt, neil.armstrong,
bjorn.andersson, marex, dev, mani, prabhakar.mahadev-lad.rj,
linux-serial, linux-riscv, liu.wenhong35, liu.qingtao2, hu.yuye,
dai.hualiang, deng.weixian, jia.yunxiang, bai.lu5, yang.susheng,
shen.lin1, tan.hu, zuo.jiang
On 13/02/2026 10:33, LiuQingtao wrote:
> From: Wenhong Liu <liu.wenhong35@zte.com.cn>
>
> Add documentation for LRW UART devicetree bindings.
>
> Signed-off-by: Wenhong Liu <liu.wenhong35@zte.com.cn>
> Signed-off-by: Qingtao Liu <liu.qingtao2@zte.com.cn>
Please use scripts/get_maintainers.pl to get a list of necessary people
and lists to CC. It might happen, that command when run on an older
kernel, gives you outdated entries. Therefore please be sure you base
your patches on recent Linux kernel.
Tools like b4 or scripts/get_maintainer.pl provide you proper list of
people, so fix your workflow. Tools might also fail if you work on some
ancient tree (don't, instead use mainline) or work on fork of kernel
(don't, instead use mainline). Just use b4 and everything should be
fine, although remember about `b4 prep --auto-to-cc` if you added new
patches to the patchset.
You missed at least devicetree list (maybe more), so this won't be
tested by automated tooling. Performing review on untested code might be
a waste of time.
Please kindly resend and include all necessary To/Cc entries.
Best regards,
Krzysztof
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART
@ 2026-05-13 8:43 liu.qingtao2
2026-05-13 18:07 ` Krzysztof Kozlowski
0 siblings, 1 reply; 6+ messages in thread
From: liu.qingtao2 @ 2026-05-13 8:43 UTC (permalink / raw)
To: krzk
Cc: gregkh, jirislaby, robh, krzk+dt, conor+dt, marex, pjw, palmer,
aou, alex, rdunlap, geert+renesas, quic_zongjian,
arturs.artamonovs, robert.marko, hvilleneuve, thierry.bultel.yh,
julianbraha, flavra, prabhakar.mahadev-lad.rj, linux-serial,
linux-kernel, devicetree, linux-riscv, liu.wenhong35,
dai.hualiang, deng.weixian, jia.yunxiang, bai.lu5, yang.susheng,
shen.lin1, zuo.jiang, hu.shengming, gao.rui, tan.hu, liu.qingtao2
Thanks for your kindly review. Sorry for the delay.
> On 13/02/2026 10:33, LiuQingtao wrote:
> > From: Wenhong Liu <liu.wenhong35@zte.com.cn>
> >
> > Add documentation for LRW UART devicetree bindings.
> >
> > Signed-off-by: Wenhong Liu <liu.wenhong35@zte.com.cn>
> > Signed-off-by: Qingtao Liu <liu.qingtao2@zte.com.cn>
>
> Please use subject prefixes matching the subsystem. You can get them for
> example with `git log --oneline -- DIRECTORY_OR_FILE` on the directory
> your patch is touching. For bindings, the preferred subjects are
> explained here:
> https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters
>
>
> A nit, subject: drop second/last, redundant "bindings". The
> "dt-bindings" prefix is already stating that these are bindings.
> See also:
> https://elixir.bootlin.com/linux/v6.17-rc3/source/Documentation/devicetree/bindings/submitting-patches.rst#L18
Thanks for the notice. I will change the subject to "Add devicetree binding for ZTE LRX UART controller"
in the v2 patch series.
> > ---
> > .../bindings/serial/lrw,lrw-uart.yaml | 49 +++++++++++++++++++
> > .../devicetree/bindings/vendor-prefixes.yaml | 2 +
> > MAINTAINERS | 7 +++
> > 3 files changed, 58 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
> >
> > diff --git a/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml b/Documentation/devicetree/bindings/> serial/lrw,lrw-uart.yaml
> > new file mode 100644
> > index 000000000000..a2d41c278c4f
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
> > @@ -0,0 +1,49 @@
> > +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> > +
> > +%YAML 1.2
> > +---
> > +$id: http://devicetree.org/schemas/serial/lrw-uart.yaml#
>
> Never tested, NAK. There are several other issues here, but I am not
> going through rest of review if you did not bother to even build test
> it. Please open any other recent binding and apply same style here
> (filename, descriptions etc), so you won't be repeating SAME mistakes.
>
>
Sorry, i tested on an older version kernel.
No errors or warnings ever showed up running the command
"make dt_binding_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/serial/zte,lrx-uart.yaml".
Log from v2 patch:
$ make dt_binding_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/serial/zte,lrx-uart.yaml
SCHEMA Documentation/devicetree/bindings/processed-schema.json
CHKDT ./Documentation/devicetree/bindings
LINT ./Documentation/devicetree/bindings
DTEX Documentation/devicetree/bindings/serial/zte,lrx-uart.example.dts
DTC [C] Documentation/devicetree/bindings/serial/zte,lrx-uart.example.dtb
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: LRW serial UART
> > +
> > +maintainers:
> > + - Wenhong Liu <liu.wenhong35@zte.com.cn>
> > + - Qingtao Liu <liu.qingtao2@zte.com.cn>
> > +
> > +description: |
> > + Should be something similar to "lrw,<chip>-uart"
> > + for the UART as integrated on a particular chip, It supports
> > + multiple CPU architectures, currently including e.g. RISC-V and ARM.
> > +
> > +properties:
> > + compatible:
> > + const: lrw,lrw-uart
>
> No way lrw is a chip if this is a company.
Sorry for the name problem. lrw is a subsidiary of ZTE.
We will use ZTE as company name and lrx as chip name in the v2 patches.
lrx is a chip that will be comming up soon.
> > +
> > + reg:
> > + maxItems: 1
> > +
> > + interrupts:
> > + maxItems: 1
> > +
> > + clocks:
> > + maxItems: 1
> > +
> > +required:
> > + - compatible
> > + - reg
> > + - current-speed
> > + - clocks
> > +
> > +additionalProperties: false
> > +
> > +examples:
> > + - |
> > + uart0: serial@e0001800 {
> > + compatible = "lrw,lrw-uart";
> > + interrupt-parent = <&aplic0>;
> > + interrupts = <0x12 0x4>;
> > + reg = <0xe0001800 0x100>;
> > + clocks = <&bar_clk>;
> > + current-speed = <115200>;
> > + };
> > diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/> vendor-prefixes.yaml
> > index ee7fd3cfe203..ec9bf262f466 100644
> > --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > @@ -961,6 +961,8 @@ patternProperties:
> > description: Loongson Technology Corporation Limited
> > "^loongmasses,.*":
> > description: Nanjing Loongmasses Ltd.
> > + "^lrw,.*":
> > + description: LRW Corp.
>
> What is the website/domain address?
>
>
> Best regards,
> Krzysztof
There won't be such problem since we use ZTE as company name.
ZTE was described in Documentation/devicetree/bindings/vendor-prefixes.yaml already.
Thanks,
Qingtao Liu
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART
@ 2026-05-13 8:44 liu.qingtao2
0 siblings, 0 replies; 6+ messages in thread
From: liu.qingtao2 @ 2026-05-13 8:44 UTC (permalink / raw)
To: krzk
Cc: gregkh, jirislaby, robh, krzk+dt, conor+dt, marex, pjw, palmer,
aou, alex, rdunlap, geert+renesas, quic_zongjian,
arturs.artamonovs, robert.marko, hvilleneuve, thierry.bultel.yh,
julianbraha, flavra, prabhakar.mahadev-lad.rj, linux-serial,
linux-kernel, devicetree, linux-riscv, liu.wenhong35,
dai.hualiang, deng.weixian, jia.yunxiang, bai.lu5, yang.susheng,
shen.lin1, zuo.jiang, hu.shengming, gao.rui, tan.hu, liu.qingtao2
> On 13/02/2026 10:33, LiuQingtao wrote:
> > From: Wenhong Liu <liu.wenhong35@zte.com.cn>
> >
> > Add documentation for LRW UART devicetree bindings.
> >
> > Signed-off-by: Wenhong Liu <liu.wenhong35@zte.com.cn>
> > Signed-off-by: Qingtao Liu <liu.qingtao2@zte.com.cn>
>
> Please use scripts/get_maintainers.pl to get a list of necessary people
> and lists to CC. It might happen, that command when run on an older
> kernel, gives you outdated entries. Therefore please be sure you base
> your patches on recent Linux kernel.
>
>
> Tools like b4 or scripts/get_maintainer.pl provide you proper list of
> people, so fix your workflow. Tools might also fail if you work on some
> ancient tree (don't, instead use mainline) or work on fork of kernel
> (don't, instead use mainline). Just use b4 and everything should be
> fine, although remember about `b4 prep --auto-to-cc` if you added new
> patches to the patchset.
>
> You missed at least devicetree list (maybe more), so this won't be
> tested by automated tooling. Performing review on untested code might be
> a waste of time.
>
> Please kindly resend and include all necessary To/Cc entries.
>
>
> Best regards,
> Krzysztof
Much thanks. I got correct lists based on most recent Linux kernel.
I'll resend v2 patches soon.
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART
2026-05-13 8:43 [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART liu.qingtao2
@ 2026-05-13 18:07 ` Krzysztof Kozlowski
0 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2026-05-13 18:07 UTC (permalink / raw)
To: liu.qingtao2
Cc: gregkh, jirislaby, robh, krzk+dt, conor+dt, marex, pjw, palmer,
aou, alex, rdunlap, geert+renesas, quic_zongjian,
arturs.artamonovs, robert.marko, hvilleneuve, thierry.bultel.yh,
julianbraha, flavra, prabhakar.mahadev-lad.rj, linux-serial,
linux-kernel, devicetree, linux-riscv, liu.wenhong35,
dai.hualiang, deng.weixian, jia.yunxiang, bai.lu5, yang.susheng,
shen.lin1, zuo.jiang, hu.shengming, gao.rui, tan.hu
On 13/05/2026 10:43, liu.qingtao2@zte.com.cn wrote:
> Thanks for your kindly review. Sorry for the delay.
>
>> On 13/02/2026 10:33, LiuQingtao wrote:
>>> From: Wenhong Liu <liu.wenhong35@zte.com.cn>
>>>
>>> Add documentation for LRW UART devicetree bindings.
>>>
>>> Signed-off-by: Wenhong Liu <liu.wenhong35@zte.com.cn>
>>> Signed-off-by: Qingtao Liu <liu.qingtao2@zte.com.cn>
>>
>> Please use subject prefixes matching the subsystem. You can get them for
>> example with `git log --oneline -- DIRECTORY_OR_FILE` on the directory
>> your patch is touching. For bindings, the preferred subjects are
>> explained here:
>> https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters
>>
>>
>> A nit, subject: drop second/last, redundant "bindings". The
>> "dt-bindings" prefix is already stating that these are bindings.
>> See also:
>> https://elixir.bootlin.com/linux/v6.17-rc3/source/Documentation/devicetree/bindings/submitting-patches.rst#L18
>
> Thanks for the notice. I will change the subject to "Add devicetree binding for ZTE LRX UART controller"
> in the v2 patch series.
NAK. Read the comment again. You improved nothing.
>
>
>>> ---
>>> .../bindings/serial/lrw,lrw-uart.yaml | 49 +++++++++++++++++++
>>> .../devicetree/bindings/vendor-prefixes.yaml | 2 +
>>> MAINTAINERS | 7 +++
>>> 3 files changed, 58 insertions(+)
>>> create mode 100644 Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
>>>
>>> diff --git a/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml b/Documentation/devicetree/bindings/> serial/lrw,lrw-uart.yaml
>>> new file mode 100644
>>> index 000000000000..a2d41c278c4f
>>> --- /dev/null
>>> +++ b/Documentation/devicetree/bindings/serial/lrw,lrw-uart.yaml
>>> @@ -0,0 +1,49 @@
>>> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
>>> +
>>> +%YAML 1.2
>>> +---
>>> +$id: http://devicetree.org/schemas/serial/lrw-uart.yaml#
>>
>> Never tested, NAK. There are several other issues here, but I am not
>> going through rest of review if you did not bother to even build test
>> it. Please open any other recent binding and apply same style here
>> (filename, descriptions etc), so you won't be repeating SAME mistakes.
>>
>>
>
> Sorry, i tested on an older version kernel.
> No errors or warnings ever showed up running the command
> "make dt_binding_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/serial/zte,lrx-uart.yaml".
>
Don't work on older kernel. It's not an excuse.
Best regards,
Krzysztof
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-05-13 20:32 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-13 8:43 [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART liu.qingtao2
2026-05-13 18:07 ` Krzysztof Kozlowski
-- strict thread matches above, loose matches on Subject: below --
2026-05-13 8:44 liu.qingtao2
2026-02-13 9:33 [PATCH v1 0/2] LRW UART: Patch series for LRW UART driver LiuQingtao
2026-02-13 9:33 ` [PATCH v1 1/2] LRW UART: dt-bindings: Add binding for LRW UART LiuQingtao
2026-02-13 10:00 ` Krzysztof Kozlowski
2026-02-13 14:24 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox