summaryrefslogtreecommitdiffstats
path: root/sys/pc98
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/pc98
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/pc98')
-rw-r--r--sys/pc98/pc98/lpt.c4
-rw-r--r--sys/pc98/pc98/mse.c4
-rw-r--r--sys/pc98/pc98/pcaudio.c4
-rw-r--r--sys/pc98/pc98/wd.c4
-rw-r--r--sys/pc98/pc98/wd_cd.c4
-rw-r--r--sys/pc98/pc98/wfd.c4
-rw-r--r--sys/pc98/pc98/wst.c4
7 files changed, 14 insertions, 14 deletions
diff --git a/sys/pc98/pc98/lpt.c b/sys/pc98/pc98/lpt.c
index 7c23d74..a8c249c 100644
--- a/sys/pc98/pc98/lpt.c
+++ b/sys/pc98/pc98/lpt.c
@@ -46,7 +46,7 @@
* SUCH DAMAGE.
*
* from: unknown origin, 386BSD 0.1
- * $Id: lpt.c,v 1.24 1998/12/11 08:48:21 kato Exp $
+ * $Id: lpt.c,v 1.25 1999/01/28 11:24:36 kato Exp $
*/
/*
@@ -1422,7 +1422,7 @@ lpoutput (struct ifnet *ifp, struct mbuf *m,
#endif /* INET */
-static lpt_devsw_installed = 0;
+static int lpt_devsw_installed;
static void lpt_drvinit(void *unused)
{
diff --git a/sys/pc98/pc98/mse.c b/sys/pc98/pc98/mse.c
index e5bcc44..a71b116 100644
--- a/sys/pc98/pc98/mse.c
+++ b/sys/pc98/pc98/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.17 1998/06/08 08:55:44 kato Exp $
+ * $Id: mse.c,v 1.18 1998/10/22 05:58:45 bde Exp $
*/
/*
* Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and
@@ -923,7 +923,7 @@ mse_get98m(port, dx, dy, but)
}
#endif
-static mse_devsw_installed = 0;
+static int mse_devsw_installed;
static void mse_drvinit(void *unused)
{
diff --git a/sys/pc98/pc98/pcaudio.c b/sys/pc98/pc98/pcaudio.c
index 05ba016..d132dc6 100644
--- a/sys/pc98/pc98/pcaudio.c
+++ b/sys/pc98/pc98/pcaudio.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: pcaudio.c,v 1.19 1998/12/14 08:58:56 kato Exp $
+ * $Id: pcaudio.c,v 1.20 1998/12/30 08:08:05 kato Exp $
*/
#include "pca.h"
@@ -587,7 +587,7 @@ pcapoll(dev_t dev, int events, struct proc *p)
return (revents);
}
-static pca_devsw_installed = 0;
+static int pca_devsw_installed;
static void pca_drvinit(void *unused)
{
diff --git a/sys/pc98/pc98/wd.c b/sys/pc98/pc98/wd.c
index 6534255..4c256b3 100644
--- a/sys/pc98/pc98/wd.c
+++ b/sys/pc98/pc98/wd.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)wd.c 7.2 (Berkeley) 5/9/91
- * $Id: wd.c,v 1.77 1999/04/03 15:51:54 kato Exp $
+ * $Id: wd.c,v 1.78 1999/04/18 14:42:20 kato Exp $
*/
/* TODO:
@@ -2773,7 +2773,7 @@ wdwait(struct disk *du, u_char bits_wanted, int timeout)
return (-1);
}
-static wd_devsw_installed = 0;
+static int wd_devsw_installed;
static void wd_drvinit(void *unused)
{
diff --git a/sys/pc98/pc98/wd_cd.c b/sys/pc98/pc98/wd_cd.c
index e8f7add..c5a9097 100644
--- a/sys/pc98/pc98/wd_cd.c
+++ b/sys/pc98/pc98/wd_cd.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: atapi-cd.c,v 1.14 1999/04/13 19:38:10 peter Exp $
+ * $Id: atapi-cd.c,v 1.15 1999/04/27 11:14:51 phk Exp $
*/
#include "wdc.h"
@@ -1517,7 +1517,7 @@ atapi_dump(int ctrlr, int lun, char *label, void *data, int len)
printf ("\n");
}
-static acd_devsw_installed = 0;
+static int acd_devsw_installed;
static void
acd_drvinit(void *unused)
diff --git a/sys/pc98/pc98/wfd.c b/sys/pc98/pc98/wfd.c
index 6f42292..4f66643 100644
--- a/sys/pc98/pc98/wfd.c
+++ b/sys/pc98/pc98/wfd.c
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: wfd.c,v 1.20 1999/04/13 19:38:11 peter Exp $
+ * $Id: wfd.c,v 1.21 1999/04/27 11:15:21 phk Exp $
*/
/*
@@ -764,7 +764,7 @@ static int wfd_eject (struct wfd *t, int closeit)
0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0);
}
-static wfd_devsw_installed = 0;
+static int wfd_devsw_installed;
static void wfd_drvinit(void *unused)
{
diff --git a/sys/pc98/pc98/wst.c b/sys/pc98/pc98/wst.c
index 714e667..092846b 100644
--- a/sys/pc98/pc98/wst.c
+++ b/sys/pc98/pc98/wst.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: wst.c,v 1.15 1999/01/12 01:28:00 eivind Exp $
+ * $Id: wst.c,v 1.16 1999/04/13 19:38:11 peter Exp $
*/
#include "wdc.h"
@@ -784,7 +784,7 @@ wst_reset(struct wst *t)
DELAY(30);
}
-static wst_devsw_installed = 0;
+static int wst_devsw_installed;
static void
wst_drvinit(void *unused)
OpenPOWER on IntegriCloud