Fix a typo in a string in a KASSERT to sanity check the CPU IDs.
Obtained from: ABT Systems Ltd MFC after: 1 month Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
8ec2b5df73
commit
0f0b7aa289
@ -441,7 +441,7 @@ cpu_init_fdt(u_int id, phandle_t node, u_int addr_size, pcell_t *reg)
|
||||
if (id > mp_maxid)
|
||||
return (0);
|
||||
|
||||
KASSERT(id < MAXCPU, ("Too mant CPUs"));
|
||||
KASSERT(id < MAXCPU, ("Too many CPUs"));
|
||||
|
||||
KASSERT(addr_size == 1 || addr_size == 2, ("Invalid register size"));
|
||||
#ifdef INVARIANTS
|
||||
|
Loading…
Reference in New Issue
Block a user