arm64: dump: Use consistent capitalisation for page-table dumps
authorWill Deacon <will.deacon@arm.com>
Wed, 5 Sep 2018 14:12:27 +0000 (15:12 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Mon, 10 Sep 2018 15:15:23 +0000 (16:15 +0100)
Being consistent in our capitalisation for page-table dumps helps when
grepping for things like "end".

Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/mm/dump.c

index 65dfc85..fcb1f2a 100644 (file)
@@ -36,8 +36,8 @@ static const struct addr_marker address_markers[] = {
 #endif
        { MODULES_VADDR,                "Modules start" },
        { MODULES_END,                  "Modules end" },
-       { VMALLOC_START,                "vmalloc() Area" },
-       { VMALLOC_END,                  "vmalloc() End" },
+       { VMALLOC_START,                "vmalloc() area" },
+       { VMALLOC_END,                  "vmalloc() end" },
        { FIXADDR_START,                "Fixmap start" },
        { FIXADDR_TOP,                  "Fixmap end" },
        { PCI_IO_START,                 "PCI I/O start" },
@@ -46,7 +46,7 @@ static const struct addr_marker address_markers[] = {
        { VMEMMAP_START,                "vmemmap start" },
        { VMEMMAP_START + VMEMMAP_SIZE, "vmemmap end" },
 #endif
-       { PAGE_OFFSET,                  "Linear Mapping" },
+       { PAGE_OFFSET,                  "Linear mapping" },
        { -1,                           NULL },
 };