Skip to content

Commit f341d89

Browse files
Colin Ian Kingmpe
authored andcommitted
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>
1 parent 26ad267 commit f341d89

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

arch/powerpc/mm/hash_utils_64.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ int hash__create_section_mapping(unsigned long start, unsigned long end, int nid
784784
int rc;
785785

786786
if (end >= H_VMALLOC_START) {
787-
pr_warn("Outisde the supported range\n");
787+
pr_warn("Outside the supported range\n");
788788
return -1;
789789
}
790790

@@ -932,7 +932,7 @@ static void __init htab_initialize(void)
932932
base, size, prot);
933933

934934
if ((base + size) >= H_VMALLOC_START) {
935-
pr_warn("Outisde the supported range\n");
935+
pr_warn("Outside the supported range\n");
936936
continue;
937937
}
938938

arch/powerpc/mm/pgtable-hash64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ int __meminit hash__vmemmap_create_mapping(unsigned long start,
115115
int rc;
116116

117117
if ((start + page_size) >= H_VMEMMAP_END) {
118-
pr_warn("Outisde the supported range\n");
118+
pr_warn("Outside the supported range\n");
119119
return -1;
120120
}
121121

arch/powerpc/mm/pgtable-radix.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ void __init radix_init_pgtable(void)
341341
*/
342342

343343
if ((reg->base + reg->size) >= RADIX_VMALLOC_START) {
344-
pr_warn("Outisde the supported range\n");
344+
pr_warn("Outside the supported range\n");
345345
continue;
346346
}
347347

@@ -902,7 +902,7 @@ static void __meminit remove_pagetable(unsigned long start, unsigned long end)
902902
int __meminit radix__create_section_mapping(unsigned long start, unsigned long end, int nid)
903903
{
904904
if (end >= RADIX_VMALLOC_START) {
905-
pr_warn("Outisde the supported range\n");
905+
pr_warn("Outside the supported range\n");
906906
return -1;
907907
}
908908

@@ -934,7 +934,7 @@ int __meminit radix__vmemmap_create_mapping(unsigned long start,
934934
int ret;
935935

936936
if ((start + page_size) >= RADIX_VMEMMAP_END) {
937-
pr_warn("Outisde the supported range\n");
937+
pr_warn("Outside the supported range\n");
938938
return -1;
939939
}
940940

arch/powerpc/mm/pgtable_64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ void __iomem *__ioremap_at(phys_addr_t pa, void *ea, unsigned long size, pgprot_
122122
return NULL;
123123

124124
if ((ea + size) >= (void *)IOREMAP_END) {
125-
pr_warn("Outisde the supported range\n");
125+
pr_warn("Outside the supported range\n");
126126
return NULL;
127127
}
128128

0 commit comments

Comments
 (0)