* [PATCH 1/1] Fixing a minor typo in YAML document
@ 2025-05-17 2:05 Jihed Chaibi
2025-05-17 11:21 ` Krzysztof Kozlowski
2025-05-19 20:03 ` Brian Norris
0 siblings, 2 replies; 7+ messages in thread
From: Jihed Chaibi @ 2025-05-17 2:05 UTC (permalink / raw)
To: heiko, briannorris
Cc: devicetree, linux-rockchip, linux-kernel-mentees, skhan,
linux-kernel, jihed.chaibi.dev
A small typo in the rockchip,rk3399 YAML document ;
"less then" should become: "less than"
Signed-off-by: Jihed Chaibi <jihed.chaibi.dev@gmail.com>
---
.../bindings/memory-controllers/rockchip,rk3399-dmc.yaml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/devicetree/bindings/memory-controllers/rockchip,rk3399-dmc.yaml b/Documentation/devicetree/bindings/memory-controllers/rockchip,rk3399-dmc.yaml
index 1f58ee99b..1a96c743e 100644
--- a/Documentation/devicetree/bindings/memory-controllers/rockchip,rk3399-dmc.yaml
+++ b/Documentation/devicetree/bindings/memory-controllers/rockchip,rk3399-dmc.yaml
@@ -128,7 +128,7 @@ properties:
minimum: 1000000 # In case anyone thought this was MHz.
description:
When the DRAM type is DDR3, this parameter defines the ODT disable
- frequency in Hz. When the DDR frequency is less then ddr3_odt_dis_freq,
+ frequency in Hz. When the DDR frequency is less than ddr3_odt_dis_freq,
the ODT on the DRAM side and controller side are both disabled.
rockchip,ddr3_drv:
@@ -176,7 +176,7 @@ properties:
minimum: 1000000 # In case anyone thought this was MHz.
description:
When the DRAM type is LPDDR3, this parameter defines then ODT disable
- frequency in Hz. When DDR frequency is less then ddr3_odt_dis_freq, the
+ frequency in Hz. When DDR frequency is less than ddr3_odt_dis_freq, the
ODT on the DRAM side and controller side are both disabled.
rockchip,lpddr3_drv:
@@ -223,7 +223,7 @@ properties:
minimum: 1000000 # In case anyone thought this was MHz.
description:
When the DRAM type is LPDDR4, this parameter defines the ODT disable
- frequency in Hz. When the DDR frequency is less then ddr3_odt_dis_freq,
+ frequency in Hz. When the DDR frequency is less than ddr3_odt_dis_freq,
the ODT on the DRAM side and controller side are both disabled.
rockchip,lpddr4_drv:
--
2.39.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] Fixing a minor typo in YAML document
2025-05-17 2:05 [PATCH 1/1] Fixing a minor typo in YAML document Jihed Chaibi
@ 2025-05-17 11:21 ` Krzysztof Kozlowski
2025-05-17 12:05 ` Jihed Chaibi
2025-05-19 20:03 ` Brian Norris
1 sibling, 1 reply; 7+ messages in thread
From: Krzysztof Kozlowski @ 2025-05-17 11:21 UTC (permalink / raw)
To: Jihed Chaibi, heiko, briannorris
Cc: devicetree, linux-rockchip, linux-kernel-mentees, skhan,
linux-kernel
On 17/05/2025 04:05, Jihed Chaibi wrote:
> A small typo in the rockchip,rk3399 YAML document ;
> "less then" should become: "less than"
>
> Signed-off-by: Jihed Chaibi <jihed.chaibi.dev@gmail.com>
> ---
> .../bindings/memory-controllers/rockchip,rk3399-dmc.yaml | 6 +++---
You not only skipped me as DT maintainer for this file but also skipped
me as the actual subsystem maintainer.
<form letter>
Please use scripts/get_maintainers.pl to get a list of necessary people
and lists to CC (and consider --no-git-fallback argument, so you will
not CC people just because they made one commit years ago). 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.
</form letter>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] Fixing a minor typo in YAML document
2025-05-17 11:21 ` Krzysztof Kozlowski
@ 2025-05-17 12:05 ` Jihed Chaibi
2025-05-18 10:34 ` Krzysztof Kozlowski
0 siblings, 1 reply; 7+ messages in thread
From: Jihed Chaibi @ 2025-05-17 12:05 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: heiko, briannorris, devicetree, linux-rockchip,
linux-kernel-mentees, skhan, linux-kernel
Thanks for the feedback, this fix being kind of "trivial" I didn't
initially want to include everyone and thought it would end up to the
main maintainer after being reviewed by the reviewers/authors of the
file, sorry for that, I will make sure every maintainer is included in
future patches.
On the other hand, I can confirm that I'm using the last kernel version.
Best regards,
On Sat, May 17, 2025 at 1:21 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On 17/05/2025 04:05, Jihed Chaibi wrote:
> > A small typo in the rockchip,rk3399 YAML document ;
> > "less then" should become: "less than"
> >
> > Signed-off-by: Jihed Chaibi <jihed.chaibi.dev@gmail.com>
> > ---
> > .../bindings/memory-controllers/rockchip,rk3399-dmc.yaml | 6 +++---
>
> You not only skipped me as DT maintainer for this file but also skipped
> me as the actual subsystem maintainer.
>
> <form letter>
> Please use scripts/get_maintainers.pl to get a list of necessary people
> and lists to CC (and consider --no-git-fallback argument, so you will
> not CC people just because they made one commit years ago). 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.
> </form letter>
>
> Best regards,
> Krzysztof
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] Fixing a minor typo in YAML document
2025-05-17 12:05 ` Jihed Chaibi
@ 2025-05-18 10:34 ` Krzysztof Kozlowski
2025-05-18 12:06 ` Jihed Chaibi
2025-05-22 8:13 ` Brigham Campbell
0 siblings, 2 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2025-05-18 10:34 UTC (permalink / raw)
To: Jihed Chaibi
Cc: heiko, briannorris, devicetree, linux-rockchip,
linux-kernel-mentees, skhan, linux-kernel
On 17/05/2025 14:05, Jihed Chaibi wrote:
> Thanks for the feedback, this fix being kind of "trivial" I didn't
> initially want to include everyone and thought it would end up to the
> main maintainer after being reviewed by the reviewers/authors of the
> file, sorry for that, I will make sure every maintainer is included in
> future patches.
>
> On the other hand, I can confirm that I'm using the last kernel version.
Please don't top post. If you do not Cc maintainers, how is it supposed
to be picked up by these maintainers?
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] Fixing a minor typo in YAML document
2025-05-18 10:34 ` Krzysztof Kozlowski
@ 2025-05-18 12:06 ` Jihed Chaibi
2025-05-22 8:13 ` Brigham Campbell
1 sibling, 0 replies; 7+ messages in thread
From: Jihed Chaibi @ 2025-05-18 12:06 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: heiko, briannorris, devicetree, linux-rockchip,
linux-kernel-mentees, skhan, linux-kernel
On Sun, May 18, 2025 at 12:34 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On 17/05/2025 14:05, Jihed Chaibi wrote:
> > Thanks for the feedback, this fix being kind of "trivial" I didn't
> > initially want to include everyone and thought it would end up to the
> > main maintainer after being reviewed by the reviewers/authors of the
> > file, sorry for that, I will make sure every maintainer is included in
> > future patches.
> >
> > On the other hand, I can confirm that I'm using the last kernel version.
>
>
> Please don't top post. If you do not Cc maintainers, how is it supposed
> to be picked up by these maintainers?
>
>
> Best regards,
> Krzysztof
My apologies again for not CC'ing the correct maintainers and for top
posting in my previous reply. I understand the importance of both for
the workflow and proper communication.
I've taken note of your feedback and will ensure I follow the
recommended procedures for future submissions.
As I'm still learning the contribution process, I appreciate the guidance.
Best regards,
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] Fixing a minor typo in YAML document
2025-05-17 2:05 [PATCH 1/1] Fixing a minor typo in YAML document Jihed Chaibi
2025-05-17 11:21 ` Krzysztof Kozlowski
@ 2025-05-19 20:03 ` Brian Norris
1 sibling, 0 replies; 7+ messages in thread
From: Brian Norris @ 2025-05-19 20:03 UTC (permalink / raw)
To: Jihed Chaibi
Cc: heiko, devicetree, linux-rockchip, linux-kernel-mentees, skhan,
linux-kernel, Krzysztof Kozlowski, Rob Herring, Conor Dooley
(CC a few more)
Hi Jihed,
On Sat, May 17, 2025 at 04:05:52AM +0200, Jihed Chaibi wrote:
> A small typo in the rockchip,rk3399 YAML document ;
> "less then" should become: "less than"
>
> Signed-off-by: Jihed Chaibi <jihed.chaibi.dev@gmail.com>
The content is fine:
Acked-by: Brian Norris <briannorris@chromium.org>
(Feel free to include that line in your patch for v2 submission,
assuming you don't make massive changes.)
But you might consider looking through 'git log
Documentation/devicetree/bindings/memory-controllers/' to see what kind
of commit subjects are used. You should probably title it:
dt-bindings: memory-controllers: rk3399-dmc: ...
Or something similar.
Since you suggested you're still learning the contribution process, I'd
suggest this as a good starter:
https://docs.kernel.org/devicetree/bindings/submitting-patches.html
and also its links out to other general documentation, like:
https://docs.kernel.org/process/submitting-patches.html
Regards,
Brian
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] Fixing a minor typo in YAML document
2025-05-18 10:34 ` Krzysztof Kozlowski
2025-05-18 12:06 ` Jihed Chaibi
@ 2025-05-22 8:13 ` Brigham Campbell
1 sibling, 0 replies; 7+ messages in thread
From: Brigham Campbell @ 2025-05-22 8:13 UTC (permalink / raw)
To: Krzysztof Kozlowski, Jihed Chaibi
Cc: heiko, briannorris, devicetree, linux-rockchip,
linux-kernel-mentees, skhan, linux-kernel
On Sun May 18, 2025 at 4:34 AM MDT, Krzysztof Kozlowski wrote:
> If you do not Cc maintainers, how is it supposed
> to be picked up by these maintainers?
While I understand that Jihed made an egregious error in not Cc'ing
everyone listed by get_maintainers.pl, I also appreciate the irony in
the subsystem maintainer complaining that this change isn't going to be
picked up by the subsystem maintainer.
How _did_ you catch this patch without being Cc'ed? Care to explain to
the uninitiated?
Thanks,
Brigham
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-05-22 8:13 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-17 2:05 [PATCH 1/1] Fixing a minor typo in YAML document Jihed Chaibi
2025-05-17 11:21 ` Krzysztof Kozlowski
2025-05-17 12:05 ` Jihed Chaibi
2025-05-18 10:34 ` Krzysztof Kozlowski
2025-05-18 12:06 ` Jihed Chaibi
2025-05-22 8:13 ` Brigham Campbell
2025-05-19 20:03 ` Brian Norris
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).