diff options
| author | Mike Smith <msmith@FreeBSD.org> | 2002-01-08 19:37:12 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 2002-01-08 19:37:12 +0000 |
| commit | 1dd003ecf416bcb54936afeb88abffe6de8c2777 (patch) | |
| tree | 43b4540f06f8d2fba207365ca8f6d48613c84489 | |
| parent | 8265abbd643d9c091d12af259d8f8c1703396543 (diff) | |
Notes
| -rw-r--r-- | sys/dev/ncv/ncr53c500.c | 4 | ||||
| -rw-r--r-- | sys/dev/stg/tmc18c30.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ncv/ncr53c500.c b/sys/dev/ncv/ncr53c500.c index 449bef5c0d9c..6a9b638dd551 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; diff --git a/sys/dev/stg/tmc18c30.c b/sys/dev/stg/tmc18c30.c index 6ddd15109208..39dd222d3a68 100644 --- a/sys/dev/stg/tmc18c30.c +++ b/sys/dev/stg/tmc18c30.c @@ -116,11 +116,11 @@ * DEBUG ***************************************************/ #ifdef STG_DEBUG -int stg_debug; +static int stg_debug; #endif /* STG_DEBUG */ #ifdef STG_STATICS -struct stg_statics { +static struct stg_statics { int arbit_fail_0; int arbit_fail_1; int disconnect; |
