git: dd39806d1dbe - stable/13 - bus: Fix LINT / BUS_DEBUG build
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 04 Jan 2022 17:18:19 UTC
The branch stable/13 has been updated by mav:
URL: https://cgit.FreeBSD.org/src/commit/?id=dd39806d1dbe121418ac5599eaec153f61eabc26
commit dd39806d1dbe121418ac5599eaec153f61eabc26
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2021-09-24 20:03:10 +0000
Commit: Alexander Motin <mav@FreeBSD.org>
CommitDate: 2022-01-04 17:10:42 +0000
bus: Fix LINT / BUS_DEBUG build
Fix 0389e9be63c5e for LINT built. Removed an arg only from code
under BUS_DEBUG w/o rebuilding LINT...
Sponsored by: Netflix
Fixes: 0389e9be63c5e24ecedbb366c5682ddc2ff4de60
(cherry picked from commit 67a9e76da6e69ceee94a3b9c0fd490ed2f781938)
---
sys/kern/subr_bus.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c
index 04302ab0adf7..a7c09f6e9374 100644
--- a/sys/kern/subr_bus.c
+++ b/sys/kern/subr_bus.c
@@ -5291,7 +5291,7 @@ print_device_short(device_t dev, int indent)
if (!dev)
return;
- indentprintf(("device %d: <%s> %sparent,%schildren,%s%s%s%s%s%s,%sivars,%ssoftc,busy=%d\n",
+ indentprintf(("device %d: <%s> %sparent,%schildren,%s%s%s%s%s,%sivars,%ssoftc,busy=%d\n",
dev->unit, dev->desc,
(dev->parent? "":"no "),
(TAILQ_EMPTY(&dev->children)? "no ":""),