git: e03c9c311e89 - stable/13 - arm: Fix a typo in a KASSERT message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 24 Apr 2024 10:21:34 UTC
The branch stable/13 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=e03c9c311e892d5f9992f6ba74929a4a0866a325
commit e03c9c311e892d5f9992f6ba74929a4a0866a325
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:21:20 +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 e9114c5b0fe6..2f13707c46b8 100644
--- a/sys/arm/arm/gic.c
+++ b/sys/arm/arm/gic.c
@@ -435,7 +435,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);