arm: Fix a typo in a KASSERT message

- s/resoure/resource/

(cherry picked from commit 178cf4b9db4bb6726e845b10923788cf4e7a5ef0)
This commit is contained in:
Gordon Bergling 2024-04-19 08:54:39 +02:00
parent 87cf198499
commit a6ee6b6fc0

View file

@ -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);