linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] Documentation/driver-api: Fix typo error in cxl
@ 2025-08-18 17:53 Rakuram Eswaran
  2025-08-18 22:47 ` Dave Jiang
  2025-08-21 17:38 ` Dave Jiang
  0 siblings, 2 replies; 4+ messages in thread
From: Rakuram Eswaran @ 2025-08-18 17:53 UTC (permalink / raw)
  To: linux-doc
  Cc: dan.j.williams, dave, dave.jiang, jonathan.cameron,
	vishal.l.verma, ira.weiny, linux-cxl, alison.schofield, gourry,
	skhan, linux-kernel-mentees, corbet, rakuram.e96

Fixed the following typo errors

intersparsed ==> interspersed
in Documentation/driver-api/cxl/platform/bios-and-efi.rst

---
Changelog:

Changes since v2:
- Fixed Signed-off-by line to include fullname
  (feedback from Jonathan Corbet)

Changes since v1:
- Dropped fix for page-allocator.rst as requested by Gregory

Suggested-by: Gregory Price <gourry@gourry.net> 
Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>
---
 Documentation/driver-api/cxl/platform/bios-and-efi.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/driver-api/cxl/platform/bios-and-efi.rst b/Documentation/driver-api/cxl/platform/bios-and-efi.rst
index 645322632cc9..a9aa0ccd92af 100644
--- a/Documentation/driver-api/cxl/platform/bios-and-efi.rst
+++ b/Documentation/driver-api/cxl/platform/bios-and-efi.rst
@@ -202,7 +202,7 @@ future and such a configuration should be avoided.
 
 Memory Holes
 ------------
-If your platform includes memory holes intersparsed between your CXL memory, it
+If your platform includes memory holes interspersed between your CXL memory, it
 is recommended to utilize multiple decoders to cover these regions of memory,
 rather than try to program the decoders to accept the entire range and expect
 Linux to manage the overlap.
-- 
2.43.0


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

* Re: [PATCH v3] Documentation/driver-api: Fix typo error in cxl
  2025-08-18 17:53 [PATCH v3] Documentation/driver-api: Fix typo error in cxl Rakuram Eswaran
@ 2025-08-18 22:47 ` Dave Jiang
  2025-08-19 11:29   ` Jonathan Cameron
  2025-08-21 17:38 ` Dave Jiang
  1 sibling, 1 reply; 4+ messages in thread
From: Dave Jiang @ 2025-08-18 22:47 UTC (permalink / raw)
  To: Rakuram Eswaran, linux-doc
  Cc: dan.j.williams, dave, jonathan.cameron, vishal.l.verma, ira.weiny,
	linux-cxl, alison.schofield, gourry, skhan, linux-kernel-mentees,
	corbet



On 8/18/25 10:53 AM, Rakuram Eswaran wrote:
> Fixed the following typo errors
> 
> intersparsed ==> interspersed
> in Documentation/driver-api/cxl/platform/bios-and-efi.rst
> 
> ---
> Changelog:
> 
> Changes since v2:
> - Fixed Signed-off-by line to include fullname
>   (feedback from Jonathan Corbet)
> 
> Changes since v1:
> - Dropped fix for page-allocator.rst as requested by Gregory
> 
> Suggested-by: Gregory Price <gourry@gourry.net> 
> Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>

Reviewed-by: Dave Jiang <dave.jiang@intel.com>
> ---
>  Documentation/driver-api/cxl/platform/bios-and-efi.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/driver-api/cxl/platform/bios-and-efi.rst b/Documentation/driver-api/cxl/platform/bios-and-efi.rst
> index 645322632cc9..a9aa0ccd92af 100644
> --- a/Documentation/driver-api/cxl/platform/bios-and-efi.rst
> +++ b/Documentation/driver-api/cxl/platform/bios-and-efi.rst
> @@ -202,7 +202,7 @@ future and such a configuration should be avoided.
>  
>  Memory Holes
>  ------------
> -If your platform includes memory holes intersparsed between your CXL memory, it
> +If your platform includes memory holes interspersed between your CXL memory, it
>  is recommended to utilize multiple decoders to cover these regions of memory,
>  rather than try to program the decoders to accept the entire range and expect
>  Linux to manage the overlap.


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

* Re: [PATCH v3] Documentation/driver-api: Fix typo error in cxl
  2025-08-18 22:47 ` Dave Jiang
@ 2025-08-19 11:29   ` Jonathan Cameron
  0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2025-08-19 11:29 UTC (permalink / raw)
  To: Dave Jiang
  Cc: Rakuram Eswaran, linux-doc, dan.j.williams, dave, vishal.l.verma,
	ira.weiny, linux-cxl, alison.schofield, gourry, skhan,
	linux-kernel-mentees, corbet

On Mon, 18 Aug 2025 15:47:49 -0700
Dave Jiang <dave.jiang@intel.com> wrote:

> On 8/18/25 10:53 AM, Rakuram Eswaran wrote:
> > Fixed the following typo errors
> > 
> > intersparsed ==> interspersed
> > in Documentation/driver-api/cxl/platform/bios-and-efi.rst
> > 
> > ---
> > Changelog:
> > 
> > Changes since v2:
> > - Fixed Signed-off-by line to include fullname
> >   (feedback from Jonathan Corbet)
> > 
> > Changes since v1:
> > - Dropped fix for page-allocator.rst as requested by Gregory
> > 
> > Suggested-by: Gregory Price <gourry@gourry.net> 
> > Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>  
> 
> Reviewed-by: Dave Jiang <dave.jiang@intel.com>
FWIW

Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>


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

* Re: [PATCH v3] Documentation/driver-api: Fix typo error in cxl
  2025-08-18 17:53 [PATCH v3] Documentation/driver-api: Fix typo error in cxl Rakuram Eswaran
  2025-08-18 22:47 ` Dave Jiang
@ 2025-08-21 17:38 ` Dave Jiang
  1 sibling, 0 replies; 4+ messages in thread
From: Dave Jiang @ 2025-08-21 17:38 UTC (permalink / raw)
  To: Rakuram Eswaran, linux-doc
  Cc: dan.j.williams, dave, jonathan.cameron, vishal.l.verma, ira.weiny,
	linux-cxl, alison.schofield, gourry, skhan, linux-kernel-mentees,
	corbet



On 8/18/25 10:53 AM, Rakuram Eswaran wrote:
> Fixed the following typo errors
> 
> intersparsed ==> interspersed
> in Documentation/driver-api/cxl/platform/bios-and-efi.rst
> 
> ---
> Changelog:
> 
> Changes since v2:
> - Fixed Signed-off-by line to include fullname
>   (feedback from Jonathan Corbet)
> 
> Changes since v1:
> - Dropped fix for page-allocator.rst as requested by Gregory
> 
> Suggested-by: Gregory Price <gourry@gourry.net> 
> Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>

applied to cxl/next
561c4e30bff93b3c33e694a459f8580f8a6b3c8c

> ---
>  Documentation/driver-api/cxl/platform/bios-and-efi.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/driver-api/cxl/platform/bios-and-efi.rst b/Documentation/driver-api/cxl/platform/bios-and-efi.rst
> index 645322632cc9..a9aa0ccd92af 100644
> --- a/Documentation/driver-api/cxl/platform/bios-and-efi.rst
> +++ b/Documentation/driver-api/cxl/platform/bios-and-efi.rst
> @@ -202,7 +202,7 @@ future and such a configuration should be avoided.
>  
>  Memory Holes
>  ------------
> -If your platform includes memory holes intersparsed between your CXL memory, it
> +If your platform includes memory holes interspersed between your CXL memory, it
>  is recommended to utilize multiple decoders to cover these regions of memory,
>  rather than try to program the decoders to accept the entire range and expect
>  Linux to manage the overlap.


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

end of thread, other threads:[~2025-08-21 17:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-18 17:53 [PATCH v3] Documentation/driver-api: Fix typo error in cxl Rakuram Eswaran
2025-08-18 22:47 ` Dave Jiang
2025-08-19 11:29   ` Jonathan Cameron
2025-08-21 17:38 ` Dave Jiang

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