diff options
author | msmith <msmith@FreeBSD.org> | 2002-01-08 19:37:12 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2002-01-08 19:37:12 +0000 |
commit | cb52de758f82c925fb6321f89fe6af8a6c1b83bb (patch) | |
tree | 43b4540f06f8d2fba207365ca8f6d48613c84489 /sys/dev/ncv | |
parent | 2666545aeb7f6fd3b7579b9fc178ffabcc0badb2 (diff) | |
download | FreeBSD-src-cb52de758f82c925fb6321f89fe6af8a6c1b83bb.zip FreeBSD-src-cb52de758f82c925fb6321f89fe6af8a6c1b83bb.tar.gz |
Staticise a couple of debugging variables.
Diffstat (limited to 'sys/dev/ncv')
-rw-r--r-- | sys/dev/ncv/ncr53c500.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ncv/ncr53c500.c b/sys/dev/ncv/ncr53c500.c index 449bef5..6a9b638 100644 --- a/sys/dev/ncv/ncr53c500.c +++ b/sys/dev/ncv/ncr53c500.c @@ -110,11 +110,11 @@ int ncv_data_write_bytes = 4096; * DEBUG ***************************************************/ #ifdef NCV_DEBUG -int ncv_debug; +static int ncv_debug; #endif /* NCV_DEBUG */ #ifdef NCV_STATICS -struct ncv_statics { +static struct ncv_statics { int disconnect; int reselect; } ncv_statics; |