Fix the spelling of aliasing.

Sponsored by:	Innovate UK
This commit is contained in:
Andrew Turner 2020-03-03 15:31:40 +00:00
parent 411531cf30
commit 0e6627350e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=358584
2 changed files with 3 additions and 3 deletions

View file

@ -965,7 +965,7 @@ update_user_regs(u_int cpu)
extern u_long elf_hwcap;
bool __read_frequently lse_supported = false;
bool __read_frequently icache_alising = false;
bool __read_frequently icache_aliasing = false;
bool __read_frequently icache_vmid = false;
int64_t dcache_line_size; /* The minimum D cache line size */
@ -1328,7 +1328,7 @@ identify_cache(uint64_t ctr)
break;
default:
case CTR_L1IP_VIPT:
icache_alising = true;
icache_aliasing = true;
break;
}

View file

@ -199,7 +199,7 @@ invalidate_local_icache(void)
"isb \n");
}
extern bool icache_alising;
extern bool icache_aliasing;
extern bool icache_vmid;
extern int64_t dcache_line_size;