Commit f341d897 authored by Colin Ian King's avatar Colin Ian King Committed by Michael Ellerman

powerpc/mm: fix spelling mistake "Outisde" -> "Outside"

There are several identical spelling mistakes in warning messages,
fix these.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 26ad2671
......@@ -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;
}
......
......@@ -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;
}
......
......@@ -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;
}
......
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment