Skip to content

Commit

Permalink
bus: Fix LINT / BUS_DEBUG build
Browse files Browse the repository at this point in the history
Fix 0389e9b for LINT built. Removed an arg only from code
under BUS_DEBUG w/o rebuilding LINT...

Sponsored by:		Netflix
Fixes: 0389e9b

(cherry picked from commit 67a9e76)
  • Loading branch information
bsdimp authored and amotin committed Jan 4, 2022
1 parent 7be46ae commit dd39806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/kern/subr_bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ":""),
Expand Down

0 comments on commit dd39806

Please sign in to comment.