public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scsi: ufs: dt-bindings: common: Fix a grammar error
@ 2025-12-12 13:14 Zhaoming Luo
  2025-12-12 16:59 ` Bart Van Assche
  2025-12-13  3:04 ` Krzysztof Kozlowski
  0 siblings, 2 replies; 4+ messages in thread
From: Zhaoming Luo @ 2025-12-12 13:14 UTC (permalink / raw)
  To: alim.akhtar, avri.altman, bvanassche, linux-scsi, linux-kernel

Fix a minor grammar error.

Signed-off-by: Zhaoming Luo <zhml@posteo.com>
---
 Documentation/devicetree/bindings/ufs/ufs-common.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/ufs/ufs-common.yaml b/Documentation/devicetree/bindings/ufs/ufs-common.yaml
index 9f04f34d8..efeae8f3d 100644
--- a/Documentation/devicetree/bindings/ufs/ufs-common.yaml
+++ b/Documentation/devicetree/bindings/ufs/ufs-common.yaml
@@ -48,7 +48,7 @@ properties:
     enum: [1, 2]
     default: 2
     description:
-      Number of lanes available per direction.  Note that it is assume same
+      Number of lanes available per direction.  Note that it is assumed same
       number of lanes is used both directions at once.
 
   vdd-hba-supply:
-- 
2.51.0


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

* Re: [PATCH] scsi: ufs: dt-bindings: common: Fix a grammar error
  2025-12-12 13:14 [PATCH] scsi: ufs: dt-bindings: common: Fix a grammar error Zhaoming Luo
@ 2025-12-12 16:59 ` Bart Van Assche
  2025-12-13  3:03   ` Krzysztof Kozlowski
  2025-12-13  3:04 ` Krzysztof Kozlowski
  1 sibling, 1 reply; 4+ messages in thread
From: Bart Van Assche @ 2025-12-12 16:59 UTC (permalink / raw)
  To: Zhaoming Luo, alim.akhtar, avri.altman, linux-scsi, linux-kernel

On 12/12/25 5:14 AM, Zhaoming Luo wrote:
> diff --git a/Documentation/devicetree/bindings/ufs/ufs-common.yaml b/Documentation/devicetree/bindings/ufs/ufs-common.yaml

Who is the maintainer for this file? The MAINTAINERS entry for this file
does not mention a maintainer:

UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
R:      Alim Akhtar <alim.akhtar@samsung.com>
R:      Avri Altman <avri.altman@wdc.com>
R:      Bart Van Assche <bvanassche@acm.org>
L:      linux-scsi@vger.kernel.org
S:      Supported
F:      Documentation/devicetree/bindings/ufs/
F:      Documentation/scsi/ufs.rst
F:      drivers/ufs/core/
F:      include/ufs/

Thanks,

Bart.

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

* Re: [PATCH] scsi: ufs: dt-bindings: common: Fix a grammar error
  2025-12-12 16:59 ` Bart Van Assche
@ 2025-12-13  3:03   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-12-13  3:03 UTC (permalink / raw)
  To: Bart Van Assche, Zhaoming Luo, alim.akhtar, avri.altman,
	linux-scsi, linux-kernel

On 12/12/2025 17:59, Bart Van Assche wrote:
> On 12/12/25 5:14 AM, Zhaoming Luo wrote:
>> diff --git a/Documentation/devicetree/bindings/ufs/ufs-common.yaml b/Documentation/devicetree/bindings/ufs/ufs-common.yaml
> 
> Who is the maintainer for this file? The MAINTAINERS entry for this file
> does not mention a maintainer:
> 
> UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
> R:      Alim Akhtar <alim.akhtar@samsung.com>
> R:      Avri Altman <avri.altman@wdc.com>
> R:      Bart Van Assche <bvanassche@acm.org>
> L:      linux-scsi@vger.kernel.org
> S:      Supported
> F:      Documentation/devicetree/bindings/ufs/

Here ^^^

Plus maintainer is also written in the file itself.

Anyway, author did not Cc necessary people...



Best regards,
Krzysztof

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

* Re: [PATCH] scsi: ufs: dt-bindings: common: Fix a grammar error
  2025-12-12 13:14 [PATCH] scsi: ufs: dt-bindings: common: Fix a grammar error Zhaoming Luo
  2025-12-12 16:59 ` Bart Van Assche
@ 2025-12-13  3:04 ` Krzysztof Kozlowski
  1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-12-13  3:04 UTC (permalink / raw)
  To: Zhaoming Luo, alim.akhtar, avri.altman, bvanassche, linux-scsi,
	linux-kernel

On 12/12/2025 14:14, Zhaoming Luo wrote:
> Fix a minor grammar error.
> 
> Signed-off-by: Zhaoming Luo <zhml@posteo.com>
> ---


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

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

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

end of thread, other threads:[~2025-12-13  3:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-12 13:14 [PATCH] scsi: ufs: dt-bindings: common: Fix a grammar error Zhaoming Luo
2025-12-12 16:59 ` Bart Van Assche
2025-12-13  3:03   ` Krzysztof Kozlowski
2025-12-13  3:04 ` Krzysztof Kozlowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox