isa.h -> isareg.h, and update prototype of pcprobe().

This commit is contained in:
mycroft 1994-11-04 01:00:38 +00:00
parent 7773b21b74
commit 8f064215a2
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcvt_drv.c,v 1.7 1994/10/30 21:44:31 cgd Exp $ */
/* $NetBSD: pcvt_drv.c,v 1.8 1994/11/04 01:00:38 mycroft Exp $ */
/*
* Copyright (c) 1992,1993,1994 Hellmuth Michaelis, Brian Dunford-Shore,
@ -99,7 +99,7 @@ static int pcvt_xmode_set(int on, struct proc *p); /* initialize for X mode */
int
#if PCVT_NETBSD > 9
pcprobe(struct device *parent, struct device *self, void *aux)
pcprobe(struct device *parent, void *match, void *aux)
#else
pcprobe(struct isa_device *dev)
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcvt_hdr.h,v 1.9 1994/10/30 21:44:36 cgd Exp $ */
/* $NetBSD: pcvt_hdr.h,v 1.10 1994/11/04 01:00:40 mycroft Exp $ */
/*
* Copyright (c) 1992,1993,1994 Hellmuth Michaelis, Brian Dunford-Shore
@ -111,7 +111,7 @@
#include "i386/isa/isa_device.h"
#endif
#include "i386/isa/icu.h"
#include "i386/isa/isa.h"
#include "i386/isa/isareg.h"
#if PCVT_NETBSD > 9
#include "dev/cons.h"
@ -1225,8 +1225,8 @@ struct mousestat {
#if PCVT_NETBSD > 9
int pcprobe ();
void pcattach ();
int pcprobe (struct device *, void *, void *);
void pcattach (struct device *, struct device *, void *);
struct cfdriver vtcd = {
NULL, "vt", pcprobe, pcattach, DV_TTY, sizeof(struct device)