linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Documentation/driver-api: Fix typo error in cxl
@ 2025-08-19  8:41 Moktar SELLAMI
  2025-08-19 11:28 ` Jonathan Cameron
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Moktar SELLAMI @ 2025-08-19  8:41 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-cxl, linux-doc, Dave Jiang, Alison Schofield, Vishal Verma,
	Ira Weiny, Dan Williams, Jonathan Corbet, Gregory Price,
	Moktar SELLAMI, Alok Tiwari, linux-kernel-mentees, skhan

Fixed Typo in the driver-api/cxl/devices/devices.rst

functionalty -> functionality

Signed-off-by: Moktar SELLAMI <smokthar925@gmail.com>
---
 Documentation/driver-api/cxl/devices/device-types.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/driver-api/cxl/devices/device-types.rst b/Documentation/driver-api/cxl/devices/device-types.rst
index 923f5d89bc04..7f69dfa4509b 100644
--- a/Documentation/driver-api/cxl/devices/device-types.rst
+++ b/Documentation/driver-api/cxl/devices/device-types.rst
@@ -22,7 +22,7 @@ The basic interaction protocol, similar to PCIe configuration mechanisms.
 Typically used for initialization, configuration, and I/O access for anything
 other than memory (CXL.mem) or cache (CXL.cache) operations.
 
-The Linux CXL driver exposes access to .io functionalty via the various sysfs
+The Linux CXL driver exposes access to .io functionality via the various sysfs
 interfaces and /dev/cxl/ devices (which exposes direct access to device
 mailboxes).
 
-- 
2.34.1


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

* Re: [PATCH] Documentation/driver-api: Fix typo error in cxl
  2025-08-19  8:41 [PATCH] Documentation/driver-api: Fix typo error in cxl Moktar SELLAMI
@ 2025-08-19 11:28 ` Jonathan Cameron
  2025-08-19 17:23 ` Randy Dunlap
  2025-08-29 22:35 ` Jonathan Corbet
  2 siblings, 0 replies; 5+ messages in thread
From: Jonathan Cameron @ 2025-08-19 11:28 UTC (permalink / raw)
  To: Moktar SELLAMI
  Cc: linux-kernel, linux-cxl, linux-doc, Dave Jiang, Alison Schofield,
	Vishal Verma, Ira Weiny, Dan Williams, Jonathan Corbet,
	Gregory Price, Alok Tiwari, linux-kernel-mentees, skhan

On Tue, 19 Aug 2025 09:41:16 +0100
Moktar SELLAMI <smokthar925@gmail.com> wrote:

> Fixed Typo in the driver-api/cxl/devices/devices.rst
> 
> functionalty -> functionality
> 
> Signed-off-by: Moktar SELLAMI <smokthar925@gmail.com>
Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>

> ---
>  Documentation/driver-api/cxl/devices/device-types.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/driver-api/cxl/devices/device-types.rst b/Documentation/driver-api/cxl/devices/device-types.rst
> index 923f5d89bc04..7f69dfa4509b 100644
> --- a/Documentation/driver-api/cxl/devices/device-types.rst
> +++ b/Documentation/driver-api/cxl/devices/device-types.rst
> @@ -22,7 +22,7 @@ The basic interaction protocol, similar to PCIe configuration mechanisms.
>  Typically used for initialization, configuration, and I/O access for anything
>  other than memory (CXL.mem) or cache (CXL.cache) operations.
>  
> -The Linux CXL driver exposes access to .io functionalty via the various sysfs
> +The Linux CXL driver exposes access to .io functionality via the various sysfs
>  interfaces and /dev/cxl/ devices (which exposes direct access to device
>  mailboxes).
>  


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

* Re: [PATCH] Documentation/driver-api: Fix typo error in cxl
  2025-08-19  8:41 [PATCH] Documentation/driver-api: Fix typo error in cxl Moktar SELLAMI
  2025-08-19 11:28 ` Jonathan Cameron
@ 2025-08-19 17:23 ` Randy Dunlap
  2025-08-29 22:35 ` Jonathan Corbet
  2 siblings, 0 replies; 5+ messages in thread
From: Randy Dunlap @ 2025-08-19 17:23 UTC (permalink / raw)
  To: Moktar SELLAMI, linux-kernel
  Cc: linux-cxl, linux-doc, Dave Jiang, Alison Schofield, Vishal Verma,
	Ira Weiny, Dan Williams, Jonathan Corbet, Gregory Price,
	Alok Tiwari, linux-kernel-mentees, skhan



On 8/19/25 1:41 AM, Moktar SELLAMI wrote:
> Fixed Typo in the driver-api/cxl/devices/devices.rst
> 
> functionalty -> functionality
> 
> Signed-off-by: Moktar SELLAMI <smokthar925@gmail.com>

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

Thanks.

> ---
>  Documentation/driver-api/cxl/devices/device-types.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/driver-api/cxl/devices/device-types.rst b/Documentation/driver-api/cxl/devices/device-types.rst
> index 923f5d89bc04..7f69dfa4509b 100644
> --- a/Documentation/driver-api/cxl/devices/device-types.rst
> +++ b/Documentation/driver-api/cxl/devices/device-types.rst
> @@ -22,7 +22,7 @@ The basic interaction protocol, similar to PCIe configuration mechanisms.
>  Typically used for initialization, configuration, and I/O access for anything
>  other than memory (CXL.mem) or cache (CXL.cache) operations.
>  
> -The Linux CXL driver exposes access to .io functionalty via the various sysfs
> +The Linux CXL driver exposes access to .io functionality via the various sysfs
>  interfaces and /dev/cxl/ devices (which exposes direct access to device
>  mailboxes).
>  

-- 
~Randy

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

* Re: [PATCH] Documentation/driver-api: Fix typo error in cxl
  2025-08-19  8:41 [PATCH] Documentation/driver-api: Fix typo error in cxl Moktar SELLAMI
  2025-08-19 11:28 ` Jonathan Cameron
  2025-08-19 17:23 ` Randy Dunlap
@ 2025-08-29 22:35 ` Jonathan Corbet
  2025-08-31 23:07   ` Moktar sellami
  2 siblings, 1 reply; 5+ messages in thread
From: Jonathan Corbet @ 2025-08-29 22:35 UTC (permalink / raw)
  To: Moktar SELLAMI, linux-kernel
  Cc: linux-cxl, linux-doc, Dave Jiang, Alison Schofield, Vishal Verma,
	Ira Weiny, Dan Williams, Gregory Price, Moktar SELLAMI,
	Alok Tiwari, linux-kernel-mentees, skhan

Moktar SELLAMI <smokthar925@gmail.com> writes:

> Fixed Typo in the driver-api/cxl/devices/devices.rst
>
> functionalty -> functionality
>
> Signed-off-by: Moktar SELLAMI <smokthar925@gmail.com>
> ---
>  Documentation/driver-api/cxl/devices/device-types.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/driver-api/cxl/devices/device-types.rst b/Documentation/driver-api/cxl/devices/device-types.rst
> index 923f5d89bc04..7f69dfa4509b 100644
> --- a/Documentation/driver-api/cxl/devices/device-types.rst
> +++ b/Documentation/driver-api/cxl/devices/device-types.rst
> @@ -22,7 +22,7 @@ The basic interaction protocol, similar to PCIe configuration mechanisms.
>  Typically used for initialization, configuration, and I/O access for anything
>  other than memory (CXL.mem) or cache (CXL.cache) operations.
>  
> -The Linux CXL driver exposes access to .io functionalty via the various sysfs
> +The Linux CXL driver exposes access to .io functionality via the various sysfs
>  interfaces and /dev/cxl/ devices (which exposes direct access to device
>  mailboxes).

This one was fixed a while back, so this patch is not needed.  It is
always a good idea to check linux-next when considering changes of this
type.

Thanks,

jon

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

* Re: [PATCH] Documentation/driver-api: Fix typo error in cxl
  2025-08-29 22:35 ` Jonathan Corbet
@ 2025-08-31 23:07   ` Moktar sellami
  0 siblings, 0 replies; 5+ messages in thread
From: Moktar sellami @ 2025-08-31 23:07 UTC (permalink / raw)
  To: Jonathan Corbet, linux-kernel
  Cc: linux-cxl, linux-doc, Dave Jiang, Alison Schofield, Vishal Verma,
	Ira Weiny, Dan Williams, Gregory Price, Alok Tiwari,
	linux-kernel-mentees, skhan


On 8/29/25 23:35, Jonathan Corbet wrote:
> Moktar SELLAMI <smokthar925@gmail.com> writes:
>
>> Fixed Typo in the driver-api/cxl/devices/devices.rst
>>
>> functionalty -> functionality
>>
>> Signed-off-by: Moktar SELLAMI <smokthar925@gmail.com>
>> ---
>>   Documentation/driver-api/cxl/devices/device-types.rst | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/Documentation/driver-api/cxl/devices/device-types.rst b/Documentation/driver-api/cxl/devices/device-types.rst
>> index 923f5d89bc04..7f69dfa4509b 100644
>> --- a/Documentation/driver-api/cxl/devices/device-types.rst
>> +++ b/Documentation/driver-api/cxl/devices/device-types.rst
>> @@ -22,7 +22,7 @@ The basic interaction protocol, similar to PCIe configuration mechanisms.
>>   Typically used for initialization, configuration, and I/O access for anything
>>   other than memory (CXL.mem) or cache (CXL.cache) operations.
>>   
>> -The Linux CXL driver exposes access to .io functionalty via the various sysfs
>> +The Linux CXL driver exposes access to .io functionality via the various sysfs
>>   interfaces and /dev/cxl/ devices (which exposes direct access to device
>>   mailboxes).
> This one was fixed a while back, so this patch is not needed.  It is
> always a good idea to check linux-next when considering changes of this
> type.
>
> Thanks,
>
> jon

Thank you for the clarification and for pointing me to linux-next. i 
will try to come up with an other patch thank u.

Moktar



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

end of thread, other threads:[~2025-08-31 23:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-19  8:41 [PATCH] Documentation/driver-api: Fix typo error in cxl Moktar SELLAMI
2025-08-19 11:28 ` Jonathan Cameron
2025-08-19 17:23 ` Randy Dunlap
2025-08-29 22:35 ` Jonathan Corbet
2025-08-31 23:07   ` Moktar sellami

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