The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=178cf4b9db4bb6726e845b10923788cf4e7a5ef0
commit 178cf4b9db4bb6726e845b10923788cf4e7a5ef0 Author: Gordon Bergling <[email protected]> AuthorDate: 2024-04-19 06:54:39 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2024-04-19 06:54:39 +0000 arm: Fix a typo in a KASSERT message - s/resoure/resource/ MFC after: 5 days --- sys/arm/arm/gic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/arm/gic.c b/sys/arm/arm/gic.c index cb1419c42569..7fbf7e7fd827 100644 --- a/sys/arm/arm/gic.c +++ b/sys/arm/arm/gic.c @@ -444,7 +444,7 @@ arm_gic_alloc_resource(device_t bus, device_t child, int type, int *rid, struct resource_list *rl; int j; - KASSERT(type == SYS_RES_MEMORY, ("Invalid resoure type %x", type)); + KASSERT(type == SYS_RES_MEMORY, ("Invalid resource type %x", type)); sc = device_get_softc(bus);
