mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
ofw_reg_to_paddr(): Fix minor typo in KASSERT message
This commit is contained in:
parent
2e3f84e5b7
commit
ec0646391d
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ ofw_reg_to_paddr(phandle_t dev, int regno, bus_addr_t *paddr,
|
|||
}
|
||||
|
||||
KASSERT(addr <= BUS_SPACE_MAXADDR,
|
||||
("Bus sddress is too large: %jx", (uintmax_t)addr));
|
||||
("Bus address is too large: %jx", (uintmax_t)addr));
|
||||
KASSERT(size <= BUS_SPACE_MAXSIZE,
|
||||
("Bus size is too large: %jx", (uintmax_t)size));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue