From 7332f9e45d2e13fa93acd16e2e3f122a765ff965 Mon Sep 17 00:00:00 2001 From: Kim Phillips Date: Fri, 31 Mar 2023 11:52:54 -0500 Subject: [PATCH] docs/mm: Physical Memory: Fix grammar it's -> its referenced to by -> referenced by Signed-off-by: Kim Phillips Reviewed-by: Mike Rapoport (IBM) Link: https://lore.kernel.org/r/20230331165254.207526-1-kim.phillips@amd.com Signed-off-by: Jonathan Corbet --- Documentation/mm/physical_memory.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst index d4b7830f0ebc7..531e73b003ddd 100644 --- a/Documentation/mm/physical_memory.rst +++ b/Documentation/mm/physical_memory.rst @@ -19,7 +19,7 @@ a bank of memory very suitable for DMA near peripheral devices. Each bank is called a node and the concept is represented under Linux by a ``struct pglist_data`` even if the architecture is UMA. This structure is -always referenced to by it's typedef ``pg_data_t``. ``A pg_data_t`` structure +always referenced by its typedef ``pg_data_t``. A ``pg_data_t`` structure for a particular node can be referenced by ``NODE_DATA(nid)`` macro where ``nid`` is the ID of that node.