Include appropriate header file.

This commit is contained in:
isaki 2007-03-11 08:22:33 +00:00
parent d30ec9eee3
commit e1947f9eb2
2 changed files with 6 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: opmbell.c,v 1.17 2007/03/11 08:09:25 isaki Exp $ */ /* $NetBSD: opmbell.c,v 1.18 2007/03/11 08:22:33 isaki Exp $ */
/* /*
* Copyright (c) 1995 MINOURA Makoto, Takuya Harakawa. * Copyright (c) 1995 MINOURA Makoto, Takuya Harakawa.
@ -39,7 +39,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: opmbell.c,v 1.17 2007/03/11 08:09:25 isaki Exp $"); __KERNEL_RCSID(0, "$NetBSD: opmbell.c,v 1.18 2007/03/11 08:22:33 isaki Exp $");
#include "bell.h" #include "bell.h"
#if NBELL > 0 #if NBELL > 0
@ -59,6 +59,7 @@ __KERNEL_RCSID(0, "$NetBSD: opmbell.c,v 1.17 2007/03/11 08:09:25 isaki Exp $");
#include <sys/callout.h> #include <sys/callout.h>
#include <sys/conf.h> #include <sys/conf.h>
#include <sys/event.h> #include <sys/event.h>
#include <sys/kernel.h>
#include <machine/opmbellio.h> #include <machine/opmbellio.h>
@ -496,7 +497,6 @@ opm_bell_setup(struct bell_info *data)
int int
bellmstohz(int m) bellmstohz(int m)
{ {
extern int hz;
int h = m; int h = m;
if (h > 0) { if (h > 0) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: par.c,v 1.29 2007/03/11 08:09:25 isaki Exp $ */ /* $NetBSD: par.c,v 1.30 2007/03/11 08:22:33 isaki Exp $ */
/* /*
* Copyright (c) 1982, 1990 The Regents of the University of California. * Copyright (c) 1982, 1990 The Regents of the University of California.
@ -36,7 +36,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: par.c,v 1.29 2007/03/11 08:09:25 isaki Exp $"); __KERNEL_RCSID(0, "$NetBSD: par.c,v 1.30 2007/03/11 08:22:33 isaki Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/errno.h> #include <sys/errno.h>
@ -48,6 +48,7 @@ __KERNEL_RCSID(0, "$NetBSD: par.c,v 1.29 2007/03/11 08:09:25 isaki Exp $");
#include <sys/callout.h> #include <sys/callout.h>
#include <sys/proc.h> #include <sys/proc.h>
#include <sys/conf.h> #include <sys/conf.h>
#include <sys/kernel.h>
#include <machine/bus.h> #include <machine/bus.h>
#include <machine/cpu.h> #include <machine/cpu.h>
@ -435,7 +436,6 @@ parioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
int int
parhztoms(int h) parhztoms(int h)
{ {
extern int hz;
int m = h; int m = h;
if (m > 0) if (m > 0)
@ -446,7 +446,6 @@ parhztoms(int h)
int int
parmstohz(int m) parmstohz(int m)
{ {
extern int hz;
int h = m; int h = m;
if (h > 0) { if (h > 0) {
@ -509,8 +508,6 @@ parsendch(struct par_softc *sc, u_char ch)
&& (parsend_pending && (parsend_pending
|| !(intio_get_sicilian_intr() & SICILIAN_STAT_PAR))) || !(intio_get_sicilian_intr() & SICILIAN_STAT_PAR)))
{ {
extern int hz;
/* wait a second, and try again */ /* wait a second, and try again */
callout_reset(&intr_callout, hz, parintr, 0); callout_reset(&intr_callout, hz, parintr, 0);
partimeout_pending = 1; partimeout_pending = 1;