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:
parent
26ad26718d
commit
f341d89790
@ -784,7 +784,7 @@ int hash__create_section_mapping(unsigned long start, unsigned long end, int nid
|
|||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (end >= H_VMALLOC_START) {
|
if (end >= H_VMALLOC_START) {
|
||||||
pr_warn("Outisde the supported range\n");
|
pr_warn("Outside the supported range\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -932,7 +932,7 @@ static void __init htab_initialize(void)
|
|||||||
base, size, prot);
|
base, size, prot);
|
||||||
|
|
||||||
if ((base + size) >= H_VMALLOC_START) {
|
if ((base + size) >= H_VMALLOC_START) {
|
||||||
pr_warn("Outisde the supported range\n");
|
pr_warn("Outside the supported range\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ int __meminit hash__vmemmap_create_mapping(unsigned long start,
|
|||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if ((start + page_size) >= H_VMEMMAP_END) {
|
if ((start + page_size) >= H_VMEMMAP_END) {
|
||||||
pr_warn("Outisde the supported range\n");
|
pr_warn("Outside the supported range\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -341,7 +341,7 @@ void __init radix_init_pgtable(void)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
if ((reg->base + reg->size) >= RADIX_VMALLOC_START) {
|
if ((reg->base + reg->size) >= RADIX_VMALLOC_START) {
|
||||||
pr_warn("Outisde the supported range\n");
|
pr_warn("Outside the supported range\n");
|
||||||
continue;
|
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)
|
int __meminit radix__create_section_mapping(unsigned long start, unsigned long end, int nid)
|
||||||
{
|
{
|
||||||
if (end >= RADIX_VMALLOC_START) {
|
if (end >= RADIX_VMALLOC_START) {
|
||||||
pr_warn("Outisde the supported range\n");
|
pr_warn("Outside the supported range\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ int __meminit radix__vmemmap_create_mapping(unsigned long start,
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if ((start + page_size) >= RADIX_VMEMMAP_END) {
|
if ((start + page_size) >= RADIX_VMEMMAP_END) {
|
||||||
pr_warn("Outisde the supported range\n");
|
pr_warn("Outside the supported range\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,7 +122,7 @@ void __iomem *__ioremap_at(phys_addr_t pa, void *ea, unsigned long size, pgprot_
|
|||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if ((ea + size) >= (void *)IOREMAP_END) {
|
if ((ea + size) >= (void *)IOREMAP_END) {
|
||||||
pr_warn("Outisde the supported range\n");
|
pr_warn("Outside the supported range\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user