From ec0646391dc5e45c9244c1cff22420744cee9dd0 Mon Sep 17 00:00:00 2001 From: Justin Hibbits Date: Fri, 15 Jun 2018 03:28:05 +0000 Subject: [PATCH] ofw_reg_to_paddr(): Fix minor typo in KASSERT message --- sys/dev/ofw/ofw_subr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ofw/ofw_subr.c b/sys/dev/ofw/ofw_subr.c index f183c60d62c..c1ded7635c5 100644 --- a/sys/dev/ofw/ofw_subr.c +++ b/sys/dev/ofw/ofw_subr.c @@ -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));