projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
911ac79
)
docs/mm: Physical Memory: Fix grammar
author
Kim Phillips
<kim.phillips@amd.com>
Fri, 31 Mar 2023 16:52:54 +0000
(11:52 -0500)
committer
Jonathan Corbet
<corbet@lwn.net>
Tue, 11 Apr 2023 22:16:50 +0000
(16:16 -0600)
it's -> its
referenced to by -> referenced by
Signed-off-by: Kim Phillips <kim.phillips@amd.com>
Reviewed-by: Mike Rapoport (IBM) <rppt@kernel.org>
Link:
https://lore.kernel.org/r/20230331165254.207526-1-kim.phillips@amd.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Documentation/mm/physical_memory.rst
patch
|
blob
|
history
diff --git
a/Documentation/mm/physical_memory.rst
b/Documentation/mm/physical_memory.rst
index
d4b7830
..
531e73b
100644
(file)
--- 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.