git: d7deb6833d29 - stable/12 - arm: Fix a typo in a KASSERT message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 24 Apr 2024 10:22:38 UTC
The branch stable/12 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=d7deb6833d2948edc63ce7005ae0e2d828561ecc commit d7deb6833d2948edc63ce7005ae0e2d828561ecc Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-04-19 06:54:39 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-04-24 10:22:24 +0000 arm: Fix a typo in a KASSERT message - s/resoure/resource/ (cherry picked from commit 178cf4b9db4bb6726e845b10923788cf4e7a5ef0) --- 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 9ff0ec110b54..a660722fa6e0 100644 --- a/sys/arm/arm/gic.c +++ b/sys/arm/arm/gic.c @@ -439,7 +439,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);