Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -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;
		}
		}


+1 −1
Original line number Original line Diff line number Diff line
@@ -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;
	}
	}


+3 −3
Original line number Original line Diff line number Diff line
@@ -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;
	}
	}


+1 −1
Original line number Original line Diff line number Diff line
@@ -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;
	}
	}