Changes for 4000/90.

This commit is contained in:
ragge 1999-08-27 20:05:08 +00:00
parent 02470fb53a
commit a724cc71f4
2 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_le_vsbus.c,v 1.1 1999/08/14 18:40:23 ragge Exp $ */
/* $NetBSD: if_le_vsbus.c,v 1.2 1999/08/27 20:05:08 ragge Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -96,6 +96,7 @@
#endif
#include <machine/cpu.h>
#include <machine/sid.h>
#include <machine/bus.h>
#include <machine/rpb.h>
#include <machine/vsbus.h>
@ -154,6 +155,8 @@ le_vsbus_match(parent, cf, aux)
struct vsbus_attach_args *va = aux;
volatile short *rdp, *rap;
if (vax_boardtype == VAX_BTYP_49)
return 0;
rdp = (short *)va->va_addr;
rap = rdp + 2;

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_ze.c,v 1.1 1999/08/08 11:45:02 ragge Exp $ */
/* $NetBSD: if_ze.c,v 1.2 1999/08/27 20:05:08 ragge Exp $ */
/*
* Copyright (c) 1999 Ludd, University of Lule}, Sweden. All rights reserved.
*
@ -67,7 +67,7 @@ static int zematch __P((struct device *, struct cfdata *, void *));
static void zeattach __P((struct device *, struct device *, void *));
static void zeintr __P((int));
struct cfattach ze_ca = {
struct cfattach ze_ibus_ca = {
sizeof(struct ze_softc), zematch, zeattach
};