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

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>
This commit is contained in:
Colin Ian King 2019-04-23 16:10:17 +01:00 committed by Michael Ellerman
parent 26ad26718d
commit f341d89790
4 changed files with 7 additions and 7 deletions

View 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;
}

View 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;
}

View 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;
}

View 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;
}