* [PATCH v2] staging: most: fix typos in driver_usage.txt
@ 2026-03-09 5:58 Mustafa Karamanli
0 siblings, 0 replies; 3+ messages in thread
From: Mustafa Karamanli @ 2026-03-09 5:58 UTC (permalink / raw)
To: Parthiban Veerasooran, Christian Gromm, Greg Kroah-Hartman
Cc: linux-staging, linux-kernel, Mustafa Karamanli
Fix spelling mistakes in driver_usage.txt documentation:
- 'can by used' should be 'can be used'
- 'config itmes' should be 'config items'
- 'isochrnous' should be 'isochronous'
- 'packts_per_xact' should be 'packets_per_xact'
Signed-off-by: Mustafa Karamanli <mbarancemkaramanli@gmail.com>
---
Changes in v2:
- Add description to commit message body as requested by Greg KH's patch bot
drivers/staging/most/Documentation/driver_usage.txt | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/most/Documentation/driver_usage.txt b/drivers/staging/most/Documentation/driver_usage.txt
index 2fa8dea1da4d..f1b6977f4543 100644
--- a/drivers/staging/most/Documentation/driver_usage.txt
+++ b/drivers/staging/most/Documentation/driver_usage.txt
@@ -101,11 +101,11 @@ following components are available
Userspace can access the driver by means of character devices.
2) Networking
- Standard networking applications (e.g. iperf) can by used to access
+ Standard networking applications (e.g. iperf) can be used to access
the driver via the networking subsystem.
3) Video4Linux (v4l2)
- Standard video applications (e.g. VLC) can by used to access the
+ Standard video applications (e.g. VLC) can be used to access the
driver via the V4L subsystem.
4) Advanced Linux Sound Architecture (ALSA)
@@ -121,7 +121,7 @@ The driver is to be configured via configfs. Each loaded component kernel
object (see section 1.3) registers a subsystem with configfs, which is used to
configure and establish communication pathways (links) to attached devices on
the bus. To do so, the user has to descend into the component's configuration
-directory and create a new directory (child config itmes). The name of this
+directory and create a new directory (child config items). The name of this
directory will be used as a reference for the link and it will contain the
following attributes:
@@ -129,7 +129,7 @@ following attributes:
configure the buffer size for this channel
- subbuffer_size
configure the sub-buffer size for this channel (needed for
- synchronous and isochrnous data)
+ synchronous and isochronous data)
- num_buffers
configure number of buffers used for this channel
- datatype
@@ -229,7 +229,7 @@ packets within one USB transaction. This renders
bytes for padding.
Note that at least (2 * subbuffer_size) bytes for isochronous data or
-(subbuffer_size * packts_per_xact) bytes for synchronous data need to
+(subbuffer_size * packets_per_xact) bytes for synchronous data need to
be put in the transmission buffer and passed to the driver.
Since adapter drivers are allowed to change a chosen configuration to best
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH v2] staging: most: fix typos in driver_usage.txt
[not found] <20260818082122.30038-1-qvkapp@gmail.com>
@ 2026-08-18 8:58 ` Rork A.
2026-08-18 9:04 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Rork A. @ 2026-08-18 8:58 UTC (permalink / raw)
To: Parthiban Veerasooran, Christian Gromm; +Cc: linux-staging, linux-kernel, greg
From 7b57ab25225268fce971508eb9055e61cd3f8c92 Mon Sep 17 00:00:00 2001
From: "Rork A." <qvkapp@gmail.com>
Date: Tue, 18 Aug 2026 11:57:43 +0300
Subject: [PATCH] staging: most: fix typos in driver_usage.txt
Fix two typos in drivers/staging/most/Documentation/driver_usage.txt:
- "post-poned" should be "postponed" (appears twice)
- "access a MOST network" should be "access to a MOST network"
Signed-off-by: Rork A. <qvkapp@gmail.com>
---
drivers/staging/most/Documentation/driver_usage.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/most/Documentation/driver_usage.txt b/drivers/staging/most/Documentation/driver_usage.txt
index f1b6977f4..89ced829e 100644
--- a/drivers/staging/most/Documentation/driver_usage.txt
+++ b/drivers/staging/most/Documentation/driver_usage.txt
@@ -2,7 +2,7 @@
Section 1 Overview
The Media Oriented Systems Transport (MOST) driver gives Linux applications
-access a MOST network: The Automotive Information Backbone and the de-facto
+access to a MOST network: The Automotive Information Backbone and the de-facto
standard for high-bandwidth automotive multimedia networking.
MOST defines the protocol, hardware and software layers necessary to allow
@@ -151,7 +151,7 @@ following attributes:
pass parameters needed by some components
- create_link
write '1' to this attribute to trigger the creation of the link. In
- case of speculative configuration, the creation is post-poned until
+ case of speculative configuration, the creation is postponed until
a physical device is being attached to the bus.
- destroy_link
write '1' to this attribute to destroy an already established link
@@ -172,7 +172,7 @@ name in ALSA. The sound adapter will have the following attribute:
- create_card
write '1' to this attribute to trigger the registration of the card
with the ALSA subsystem.
- In case of speculative configuration, the creation is post-poned
+ In case of speculative configuration, the creation is postponed
until a physical device is being attached to the bus.
Secondly, links will have to be created inside the adapter dir as described in
--
2.55.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] staging: most: fix typos in driver_usage.txt
2026-08-18 8:58 ` [PATCH v2] staging: most: fix typos in driver_usage.txt Rork A.
@ 2026-08-18 9:04 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2026-08-18 9:04 UTC (permalink / raw)
To: Rork A.; +Cc: Parthiban Veerasooran, Christian Gromm, linux-staging,
linux-kernel
On Tue, Aug 18, 2026 at 01:58:22AM -0700, Rork A. wrote:
> >From 7b57ab25225268fce971508eb9055e61cd3f8c92 Mon Sep 17 00:00:00 2001
> From: "Rork A." <qvkapp@gmail.com>
> Date: Tue, 18 Aug 2026 11:57:43 +0300
> Subject: [PATCH] staging: most: fix typos in driver_usage.txt
Why is this here?
> Fix two typos in drivers/staging/most/Documentation/driver_usage.txt:
>
> - "post-poned" should be "postponed" (appears twice)
> - "access a MOST network" should be "access to a MOST network"
Why is this last change needed? What grammer rule is wrong?
> Signed-off-by: Rork A. <qvkapp@gmail.com>
As my bot said, full name please.
> ---
> drivers/staging/most/Documentation/driver_usage.txt | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
No version info?
Please slow down, there's no rush here. Read the documentation and wait
a few days before resending a new version.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-18 9:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260818082122.30038-1-qvkapp@gmail.com>
2026-08-18 8:58 ` [PATCH v2] staging: most: fix typos in driver_usage.txt Rork A.
2026-08-18 9:04 ` Greg KH
2026-03-09 5:58 Mustafa Karamanli
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.