diff options
author | eivind <eivind@FreeBSD.org> | 1998-02-09 06:11:36 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-02-09 06:11:36 +0000 |
commit | d7a6ab28035779065026b70dca440892d819c0bc (patch) | |
tree | 930fd4603b42a095e9f3669517dea29274323575 /sys/dev/ie | |
parent | 4538098d0b3fbe09f64c578b730483a6e77ff40f (diff) | |
download | FreeBSD-src-d7a6ab28035779065026b70dca440892d819c0bc.zip FreeBSD-src-d7a6ab28035779065026b70dca440892d819c0bc.tar.gz |
Staticize.
Diffstat (limited to 'sys/dev/ie')
-rw-r--r-- | sys/dev/ie/if_ie.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c index 5e2f30c..1eeb533 100644 --- a/sys/dev/ie/if_ie.c +++ b/sys/dev/ie/if_ie.c @@ -47,7 +47,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ie.c,v 1.48 1997/12/15 20:30:49 eivind Exp $ + * $Id: if_ie.c,v 1.49 1998/01/08 23:40:56 eivind Exp $ */ /* @@ -165,7 +165,7 @@ iomem and and with 0xffff. #define IED_RNR 0x04 #define IED_CNA 0x08 #define IED_READFRAME 0x10 -int ie_debug = IED_RNR; +static int ie_debug = IED_RNR; #endif @@ -224,10 +224,10 @@ static int mc_setup(int, caddr_t, volatile struct ie_sys_ctl_block *); static void ie_mc_reset(int unit); #ifdef DEBUG -void print_rbd(volatile struct ie_recv_buf_desc * rbd); +static void print_rbd(volatile struct ie_recv_buf_desc * rbd); -int in_ierint = 0; -int in_ietint = 0; +static int in_ierint = 0; +static int in_ietint = 0; #endif @@ -2413,7 +2413,7 @@ setflag: #ifdef DEBUG -void +static void print_rbd(volatile struct ie_recv_buf_desc * rbd) { printf("RBD at %08lx:\n" |