summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authordt <dt@FreeBSD.org>1999-04-28 10:54:24 +0000
committerdt <dt@FreeBSD.org>1999-04-28 10:54:24 +0000
commitba8c622703d205067a8d74af1a1b2d95844349b2 (patch)
tree71852880cc0d9c678b247eb64d0e18a8b563840d /sys/dev
parenta444f336d9c283cad668b319a9f82fedb66e7d51 (diff)
downloadFreeBSD-src-ba8c622703d205067a8d74af1a1b2d95844349b2.zip
FreeBSD-src-ba8c622703d205067a8d74af1a1b2d95844349b2.tar.gz
s/static foo_devsw_installed = 0;/static int foo_devsw_installed;/.
(Edited automatically)
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/bktr/bktr_core.c4
-rw-r--r--sys/dev/dgb/dgb.c4
-rw-r--r--sys/dev/dgb/dgm.c4
-rw-r--r--sys/dev/joy/joy.c2
-rw-r--r--sys/dev/mcd/mcd.c4
-rw-r--r--sys/dev/mse/mse.c4
-rw-r--r--sys/dev/ppbus/lpt.c4
-rw-r--r--sys/dev/ppbus/ppi.c4
-rw-r--r--sys/dev/rc/rc.c2
-rw-r--r--sys/dev/scd/scd.c4
-rw-r--r--sys/dev/si/si.c4
11 files changed, 20 insertions, 20 deletions
diff --git a/sys/dev/bktr/bktr_core.c b/sys/dev/bktr/bktr_core.c
index fbce1f4..eb622c2 100644
--- a/sys/dev/bktr/bktr_core.c
+++ b/sys/dev/bktr/bktr_core.c
@@ -1,4 +1,4 @@
-/* $Id: brooktree848.c,v 1.67 1999/02/25 07:45:47 roger Exp $ */
+/* $Id: brooktree848.c,v 1.68 1999/04/24 20:13:58 peter Exp $ */
/* BT848 Driver for Brooktree's Bt848, Bt849, Bt878 and Bt 879 based cards.
The Brooktree BT848 Driver driver is based upon Mark Tinguely and
Jim Lowe's driver for the Matrox Meteor PCI card . The
@@ -6142,7 +6142,7 @@ static void msp_autodetect( bktr_ptr_t bktr ) {
#ifdef __FreeBSD__
-static bktr_devsw_installed = 0;
+static int bktr_devsw_installed;
static void
bktr_drvinit( void *unused )
diff --git a/sys/dev/dgb/dgb.c b/sys/dev/dgb/dgb.c
index c640622..7da59b0 100644
--- a/sys/dev/dgb/dgb.c
+++ b/sys/dev/dgb/dgb.c
@@ -1,5 +1,5 @@
/*-
- * dgb.c $Id: dgb.c,v 1.44 1999/04/22 15:19:37 davidn Exp $
+ * dgb.c $Id: dgb.c,v 1.45 1999/04/27 11:14:22 phk Exp $
*
* Digiboard driver.
*
@@ -2289,7 +2289,7 @@ disc_optim(tp, t)
}
-static dgb_devsw_installed = 0;
+static int dgb_devsw_installed;
static void
dgb_drvinit(void *unused)
diff --git a/sys/dev/dgb/dgm.c b/sys/dev/dgb/dgm.c
index 97ff12f..f4243bd 100644
--- a/sys/dev/dgb/dgm.c
+++ b/sys/dev/dgb/dgm.c
@@ -1,5 +1,5 @@
/*-
- * $Id: dgm.c,v 1.8 1999/04/11 03:47:24 eivind Exp $
+ * $Id: dgm.c,v 1.9 1999/04/27 11:14:24 phk Exp $
*
* This driver and the associated header files support the ISA PC/Xem
* Digiboards. Its evolutionary roots are described below.
@@ -2089,7 +2089,7 @@ disc_optim(tp, t)
}
-static dgm_devsw_installed = 0;
+static int dgm_devsw_installed;
static void
dgm_drvinit(void *unused)
diff --git a/sys/dev/joy/joy.c b/sys/dev/joy/joy.c
index f64d99e5..2561cd2 100644
--- a/sys/dev/joy/joy.c
+++ b/sys/dev/joy/joy.c
@@ -235,7 +235,7 @@ get_tick ()
}
-static joy_devsw_installed = 0;
+static int joy_devsw_installed;
static void joy_drvinit(void *unused)
{
diff --git a/sys/dev/mcd/mcd.c b/sys/dev/mcd/mcd.c
index a24a79f..8297679 100644
--- a/sys/dev/mcd/mcd.c
+++ b/sys/dev/mcd/mcd.c
@@ -40,7 +40,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: mcd.c,v 1.100 1998/07/13 09:53:01 bde Exp $
+ * $Id: mcd.c,v 1.101 1998/10/22 05:58:39 bde Exp $
*/
static const char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore";
@@ -1849,7 +1849,7 @@ mcd_resume(int unit)
}
-static mcd_devsw_installed = 0;
+static int mcd_devsw_installed;
static void mcd_drvinit(void *unused)
{
diff --git a/sys/dev/mse/mse.c b/sys/dev/mse/mse.c
index 6579de2..836ec9c 100644
--- a/sys/dev/mse/mse.c
+++ b/sys/dev/mse/mse.c
@@ -11,7 +11,7 @@
* this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
- * $Id: mse.c,v 1.38 1998/06/07 17:10:47 dfr Exp $
+ * $Id: mse.c,v 1.39 1998/10/22 05:58:39 bde Exp $
*/
/*
* Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and
@@ -769,7 +769,7 @@ mse_getati(port, dx, dy, but)
outb(port + MSE_PORTB, MSE_INPORT_INTREN);
}
-static mse_devsw_installed = 0;
+static int mse_devsw_installed;
static void mse_drvinit(void *unused)
{
diff --git a/sys/dev/ppbus/lpt.c b/sys/dev/ppbus/lpt.c
index 2cbef0e..cc2f94d 100644
--- a/sys/dev/ppbus/lpt.c
+++ b/sys/dev/ppbus/lpt.c
@@ -48,7 +48,7 @@
* from: unknown origin, 386BSD 0.1
* From Id: lpt.c,v 1.55.2.1 1996/11/12 09:08:38 phk Exp
* From Id: nlpt.c,v 1.14 1999/02/08 13:55:43 des Exp
- * $Id: lpt.c,v 1.1 1999/02/14 11:59:59 nsouch Exp $
+ * $Id: lpt.c,v 1.2 1999/02/14 16:19:16 nsouch Exp $
*/
/*
@@ -938,7 +938,7 @@ lptioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct proc *p)
return(error);
}
-static lpt_devsw_installed = 0;
+static int lpt_devsw_installed;
static void
lpt_drvinit(void *unused)
diff --git a/sys/dev/ppbus/ppi.c b/sys/dev/ppbus/ppi.c
index 8eecd79..d3a09a1 100644
--- a/sys/dev/ppbus/ppi.c
+++ b/sys/dev/ppbus/ppi.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: ppi.c,v 1.11 1999/01/30 15:35:39 nsouch Exp $
+ * $Id: ppi.c,v 1.12 1999/02/14 11:59:59 nsouch Exp $
*
*/
#include "ppi.h"
@@ -530,7 +530,7 @@ ppiioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct proc *p)
return (error);
}
-static ppi_devsw_installed = 0;
+static int ppi_devsw_installed;
static void ppi_drvinit(void *unused)
{
diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c
index ca9032e..613f8cb 100644
--- a/sys/dev/rc/rc.c
+++ b/sys/dev/rc/rc.c
@@ -1495,7 +1495,7 @@ rc_wait0(nec, unit, chan, line)
unit, chan, line);
}
-static rc_devsw_installed = 0;
+static int rc_devsw_installed;
static void rc_drvinit(void *unused)
{
diff --git a/sys/dev/scd/scd.c b/sys/dev/scd/scd.c
index 7eeca7b..cc5af14 100644
--- a/sys/dev/scd/scd.c
+++ b/sys/dev/scd/scd.c
@@ -41,7 +41,7 @@
*/
-/* $Id: scd.c,v 1.40 1998/07/13 09:53:02 bde Exp $ */
+/* $Id: scd.c,v 1.41 1999/01/12 01:29:45 eivind Exp $ */
/* Please send any comments to micke@dynas.se */
@@ -1569,7 +1569,7 @@ scd_toc_entry (int unit, struct ioc_read_toc_single_entry *te)
}
-static scd_devsw_installed = 0;
+static int scd_devsw_installed;
static void scd_drvinit(void *unused)
{
diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c
index 670ef14..add5a0b 100644
--- a/sys/dev/si/si.c
+++ b/sys/dev/si/si.c
@@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
- * $Id: si.c,v 1.80 1999/04/24 20:17:03 peter Exp $
+ * $Id: si.c,v 1.81 1999/04/27 11:15:14 phk Exp $
*/
#ifndef lint
@@ -2812,7 +2812,7 @@ si_modulename(host_type, uart_type)
return("");
}
-static si_devsw_installed = 0;
+static int si_devsw_installed;
static void
si_drvinit(void *unused)
OpenPOWER on IntegriCloud