diff options
author | Kim Phillips <kim.phillips@amd.com> | 2023-03-31 11:52:54 -0500 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2023-04-11 16:16:50 -0600 |
commit | 7332f9e45d2e13fa93acd16e2e3f122a765ff965 (patch) | |
tree | ba94e21e841c7491aef592c0d5e0d09eb9179faf /Documentation/mm | |
parent | 911ac7979dde0ca31fdfcc4fbd27d2fa3f2bf376 (diff) | |
download | linux-7332f9e45d2e13fa93acd16e2e3f122a765ff965.tar.gz linux-7332f9e45d2e13fa93acd16e2e3f122a765ff965.tar.bz2 linux-7332f9e45d2e13fa93acd16e2e3f122a765ff965.zip |
docs/mm: Physical Memory: Fix grammar
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>
Diffstat (limited to 'Documentation/mm')
-rw-r--r-- | Documentation/mm/physical_memory.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst index d4b7830f0ebc..531e73b003dd 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. |