diff options
author | markm <markm@FreeBSD.org> | 2003-04-30 12:57:40 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2003-04-30 12:57:40 +0000 |
commit | 6cc289554b8533c3a4ccee449df82dd25964011a (patch) | |
tree | 78f25ba6828418e0a4c21039c67b86f39bb61181 /sys/dev/sio | |
parent | bc54a1bc8ba917055c728fd55e152d1aede2174c (diff) | |
download | FreeBSD-src-6cc289554b8533c3a4ccee449df82dd25964011a.zip FreeBSD-src-6cc289554b8533c3a4ccee449df82dd25964011a.tar.gz |
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.
Diffstat (limited to 'sys/dev/sio')
-rw-r--r-- | sys/dev/sio/sio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index c448716..4d294df 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -327,7 +327,7 @@ static struct cdevsw sio_cdevsw = { .d_kqfilter = ttykqfilter, }; -int comconsole = -1; +static int comconsole = -1; static volatile speed_t comdefaultrate = CONSPEED; static u_long comdefaultrclk = DEFAULT_RCLK; SYSCTL_ULONG(_machdep, OID_AUTO, conrclk, CTLFLAG_RW, &comdefaultrclk, 0, ""); |