From 6cc289554b8533c3a4ccee449df82dd25964011a Mon Sep 17 00:00:00 2001 From: markm Date: Wed, 30 Apr 2003 12:57:40 +0000 Subject: Fix some easy, global, lint warnings. In most cases, this means making some local variables static. In a couple of cases, this means removing an unused variable. --- sys/kern/subr_bus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/subr_bus.c') diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index 8a68b9d..740066e 100644 --- a/sys/kern/subr_bus.c +++ b/sys/kern/subr_bus.c @@ -234,7 +234,7 @@ struct dev_event_info TAILQ_HEAD(devq, dev_event_info); -struct dev_softc +static struct dev_softc { int inuse; int nonblock; @@ -245,7 +245,7 @@ struct dev_softc struct proc *async_proc; } devsoftc; -dev_t devctl_dev; +static dev_t devctl_dev; static void devinit(void) -- cgit v1.1