Update for no __BROKEN_INDIRECT_CONFIG.

This commit is contained in:
thorpej 1997-04-16 23:32:04 +00:00
parent 28b6ad9af8
commit 991fede269
2 changed files with 8 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ofbus.c,v 1.3 1996/10/13 01:38:11 christos Exp $ */
/* $NetBSD: ofbus.c,v 1.4 1997/04/16 23:32:04 thorpej Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -36,7 +36,7 @@
#include <dev/ofw/openfirm.h>
int ofbprobe __P((struct device *, void *, void *));
int ofbprobe __P((struct device *, struct cfdata *, void *));
void ofbattach __P((struct device *, struct device *, void *));
static int ofbprint __P((void *, const char *));
@ -81,7 +81,8 @@ ofbprint(aux, name)
int
ofbprobe(parent, cf, aux)
struct device *parent;
void *cf, *aux;
struct cfdata *cf;
void *aux;
{
struct ofprobe *ofp = aux;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ofcons.c,v 1.3 1996/10/13 01:38:11 christos Exp $ */
/* $NetBSD: ofcons.c,v 1.4 1997/04/16 23:32:56 thorpej Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -54,7 +54,7 @@ struct ofc_softc {
static int stdin, stdout;
static int ofcmatch __P((struct device *, void *, void *));
static int ofcmatch __P((struct device *, struct cfdata *, void *));
static void ofcattach __P((struct device *, struct device *, void *));
struct cfattach ofcons_ca = {
@ -70,7 +70,8 @@ static int ofcprobe __P((void));
static int
ofcmatch(parent, match, aux)
struct device *parent;
void *match, *aux;
struct cfdata *match;
void *aux;
{
struct ofprobe *ofp = aux;