From b3ae88ff5dc7cee95d32cf92ad3b39b3744ad9b3 Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 25 Oct 2003 19:12:08 +0000 Subject: [PATCH] Fix uninitialized variable warning. --- sys/dev/ic/tulip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/ic/tulip.c b/sys/dev/ic/tulip.c index 8d3a9242b3c8..114239fc98fb 100644 --- a/sys/dev/ic/tulip.c +++ b/sys/dev/ic/tulip.c @@ -1,4 +1,4 @@ -/* $NetBSD: tulip.c,v 1.124 2003/10/25 18:35:43 christos Exp $ */ +/* $NetBSD: tulip.c,v 1.125 2003/10/25 19:12:08 christos Exp $ */ /*- * Copyright (c) 1998, 1999, 2000, 2002 The NetBSD Foundation, Inc. @@ -43,7 +43,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: tulip.c,v 1.124 2003/10/25 18:35:43 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tulip.c,v 1.125 2003/10/25 19:12:08 christos Exp $"); #include "bpfilter.h" @@ -5981,7 +5981,7 @@ tlp_dm9102_tmsw_init(sc) break; default: - /* Nothing. */ + opmode = 0; break; }