]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
powerpc/mm: fix spelling mistake "Outisde" -> "Outside"
authorColin Ian King <colin.king@canonical.com>
Tue, 23 Apr 2019 15:10:17 +0000 (16:10 +0100)
committerMichael Ellerman <mpe@ellerman.id.au>
Sun, 28 Apr 2019 06:28:23 +0000 (16:28 +1000)
There are several identical spelling mistakes in warning messages,
fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/mm/hash_utils_64.c
arch/powerpc/mm/pgtable-hash64.c
arch/powerpc/mm/pgtable-radix.c
arch/powerpc/mm/pgtable_64.c

index f727197de7139a88c9acad8336974828c0415538..6eb89643ce583e2f0be908ae333cbca82bd799b8 100644 (file)
@@ -784,7 +784,7 @@ int hash__create_section_mapping(unsigned long start, unsigned long end, int nid
        int rc;
 
        if (end >= H_VMALLOC_START) {
-               pr_warn("Outisde the supported range\n");
+               pr_warn("Outside the supported range\n");
                return -1;
        }
 
@@ -932,7 +932,7 @@ static void __init htab_initialize(void)
                    base, size, prot);
 
                if ((base + size) >= H_VMALLOC_START) {
-                       pr_warn("Outisde the supported range\n");
+                       pr_warn("Outside the supported range\n");
                        continue;
                }
 
index d934de4e2b3a17f13a85be2c7acce1826df2f0e3..097a3b3538b1587b33626dda96ce1bc9c147edf9 100644 (file)
@@ -115,7 +115,7 @@ int __meminit hash__vmemmap_create_mapping(unsigned long start,
        int rc;
 
        if ((start + page_size) >= H_VMEMMAP_END) {
-               pr_warn("Outisde the supported range\n");
+               pr_warn("Outside the supported range\n");
                return -1;
        }
 
index e6d5065b0bc818718a2fc793d623f092903ec029..fcb0169e2d32444aa607eb77e5cf472afa2b2b31 100644 (file)
@@ -341,7 +341,7 @@ void __init radix_init_pgtable(void)
                 */
 
                if ((reg->base + reg->size) >= RADIX_VMALLOC_START) {
-                       pr_warn("Outisde the supported range\n");
+                       pr_warn("Outside the supported range\n");
                        continue;
                }
 
@@ -902,7 +902,7 @@ static void __meminit remove_pagetable(unsigned long start, unsigned long end)
 int __meminit radix__create_section_mapping(unsigned long start, unsigned long end, int nid)
 {
        if (end >= RADIX_VMALLOC_START) {
-               pr_warn("Outisde the supported range\n");
+               pr_warn("Outside the supported range\n");
                return -1;
        }
 
@@ -934,7 +934,7 @@ int __meminit radix__vmemmap_create_mapping(unsigned long start,
        int ret;
 
        if ((start + page_size) >= RADIX_VMEMMAP_END) {
-               pr_warn("Outisde the supported range\n");
+               pr_warn("Outside the supported range\n");
                return -1;
        }
 
index 72f58c076e26cccfee64dcfb3bc2d6a33fdff5c3..95ad2a09501c8db27c1efd13073b17fa59c2a3a5 100644 (file)
@@ -122,7 +122,7 @@ void __iomem *__ioremap_at(phys_addr_t pa, void *ea, unsigned long size, pgprot_
                return NULL;
 
        if ((ea + size) >= (void *)IOREMAP_END) {
-               pr_warn("Outisde the supported range\n");
+               pr_warn("Outside the supported range\n");
                return NULL;
        }