Add trailing ; to CFATTACH_DECL.
This commit is contained in:
parent
881c258156
commit
4bf871a755
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: audioamd.c,v 1.11 2002/10/01 18:57:50 thorpej Exp $ */
|
||||
/* $NetBSD: audioamd.c,v 1.12 2002/10/02 16:02:12 thorpej Exp $ */
|
||||
/* NetBSD: am7930_sparc.c,v 1.44 1999/03/14 22:29:00 jonathan Exp */
|
||||
|
||||
/*
|
||||
@ -112,10 +112,10 @@ int audioamd_sbus_match __P((struct device *, struct cfdata *, void *));
|
||||
void audioamd_attach(struct audioamd_softc *sc, int);
|
||||
|
||||
CFATTACH_DECL(audioamd_mainbus, sizeof(struct audioamd_softc),
|
||||
audioamd_mainbus_match, audioamd_mainbus_attach, NULL, NULL)
|
||||
audioamd_mainbus_match, audioamd_mainbus_attach, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(audioamd_sbus, sizeof(struct audioamd_softc),
|
||||
audioamd_sbus_match, audioamd_sbus_attach, NULL, NULL)
|
||||
audioamd_sbus_match, audioamd_sbus_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Define our interface into the am7930 MI driver.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: bootbus.c,v 1.7 2002/10/01 18:57:50 thorpej Exp $ */
|
||||
/* $NetBSD: bootbus.c,v 1.8 2002/10/02 16:02:12 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
@ -65,7 +65,7 @@ static int bootbus_match(struct device *, struct cfdata *, void *);
|
||||
static void bootbus_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(bootbus, sizeof(struct bootbus_softc),
|
||||
bootbus_match, bootbus_attach, NULL, NULL)
|
||||
bootbus_match, bootbus_attach, NULL, NULL);
|
||||
|
||||
static int bootbus_submatch(struct device *, struct cfdata *, void *);
|
||||
static int bootbus_print(void *, const char *);
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: bwtwo_obio.c,v 1.8 2002/10/01 18:57:50 thorpej Exp $ */
|
||||
/* $NetBSD: bwtwo_obio.c,v 1.9 2002/10/02 16:02:13 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
|
||||
@ -116,7 +116,7 @@ static int bwtwomatch_obio (struct device *, struct cfdata *, void *);
|
||||
|
||||
|
||||
CFATTACH_DECL(bwtwo_obio, sizeof(struct bwtwo_softc),
|
||||
bwtwomatch_obio, bwtwoattach_obio, NULL, NULL)
|
||||
bwtwomatch_obio, bwtwoattach_obio, NULL, NULL);
|
||||
|
||||
static int bwtwo_get_video_sun4(struct bwtwo_softc *);
|
||||
static void bwtwo_set_video_sun4(struct bwtwo_softc *, int);
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cgeight.c,v 1.29 2002/10/01 18:57:50 thorpej Exp $ */
|
||||
/* $NetBSD: cgeight.c,v 1.30 2002/10/02 16:02:13 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
|
||||
@ -130,7 +130,7 @@ static void cgeightunblank __P((struct device *));
|
||||
static int cg8_pfour_probe __P((void *, void *));
|
||||
|
||||
CFATTACH_DECL(cgeight, sizeof(struct cgeight_softc),
|
||||
cgeightmatch, cgeightattach, NULL, NULL)
|
||||
cgeightmatch, cgeightattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver cgeight_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cgfour.c,v 1.29 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: cgfour.c,v 1.30 2002/10/02 16:02:13 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
|
||||
@ -134,7 +134,7 @@ static void cgfourunblank __P((struct device *));
|
||||
static int cg4_pfour_probe __P((void *, void *));
|
||||
|
||||
CFATTACH_DECL(cgfour, sizeof(struct cgfour_softc),
|
||||
cgfourmatch, cgfourattach, NULL, NULL)
|
||||
cgfourmatch, cgfourattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver cgfour_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cgfourteen.c,v 1.29 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: cgfourteen.c,v 1.30 2002/10/02 16:02:13 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
@ -106,7 +106,7 @@ static int cgfourteenmatch(struct device *, struct cfdata *, void *);
|
||||
static void cgfourteenunblank(struct device *);
|
||||
|
||||
CFATTACH_DECL(cgfourteen, sizeof(struct cgfourteen_softc),
|
||||
cgfourteenmatch, cgfourteenattach, NULL, NULL)
|
||||
cgfourteenmatch, cgfourteenattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver cgfourteen_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cgsix_obio.c,v 1.12 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: cgsix_obio.c,v 1.13 2002/10/02 16:02:13 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -73,7 +73,7 @@ static void cgsixattach __P((struct device *, struct device *, void *));
|
||||
static int cg6_pfour_probe __P((void *, void *));
|
||||
|
||||
CFATTACH_DECL(cgsix_obio, sizeof(struct cgsix_softc),
|
||||
cgsixmatch, cgsixattach, NULL, NULL)
|
||||
cgsixmatch, cgsixattach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Match a cgsix.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cgtwo.c,v 1.39 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: cgtwo.c,v 1.40 2002/10/02 16:02:14 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -95,7 +95,7 @@ int cgtwogetcmap __P((struct cgtwo_softc *, struct fbcmap *));
|
||||
int cgtwoputcmap __P((struct cgtwo_softc *, struct fbcmap *));
|
||||
|
||||
CFATTACH_DECL(cgtwo, sizeof(struct cgtwo_softc),
|
||||
cgtwomatch, cgtwoattach, NULL, NULL)
|
||||
cgtwomatch, cgtwoattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver cgtwo_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: com_ebus.c,v 1.6 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: com_ebus.c,v 1.7 2002/10/02 16:02:14 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -64,7 +64,7 @@ static int com_ebus_match(struct device *, struct cfdata *, void *);
|
||||
static void com_ebus_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(com_ebus, sizeof(struct com_ebus_softc),
|
||||
com_ebus_match, com_ebus_attach, NULL, NULL)
|
||||
com_ebus_match, com_ebus_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
com_ebus_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: com_obio.c,v 1.11 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: com_obio.c,v 1.12 2002/10/02 16:02:14 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -109,7 +109,7 @@ static void com_obio_attach __P((struct device *, struct device *, void *));
|
||||
static void com_obio_cleanup __P((void *));
|
||||
|
||||
CFATTACH_DECL(com_obio, sizeof(struct com_obio_softc),
|
||||
com_obio_match, com_obio_attach, NULL, NULL)
|
||||
com_obio_match, com_obio_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
com_obio_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: dma_obio.c,v 1.6 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: dma_obio.c,v 1.7 2002/10/02 16:02:14 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -57,7 +57,7 @@ int dmamatch_obio __P((struct device *, struct cfdata *, void *));
|
||||
void dmaattach_obio __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(dma_obio, sizeof(struct lsi64854_softc),
|
||||
dmamatch_obio, dmaattach_obio, NULL, NULL)
|
||||
dmamatch_obio, dmaattach_obio, NULL, NULL);
|
||||
|
||||
int
|
||||
dmamatch_obio(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ebus.c,v 1.8 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: ebus.c,v 1.9 2002/10/02 16:02:14 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999, 2000 Matthew R. Green
|
||||
@ -97,7 +97,7 @@ int ebus_match(struct device *, struct cfdata *, void *);
|
||||
void ebus_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(ebus, sizeof(struct ebus_softc),
|
||||
ebus_match, ebus_attach, NULL, NULL)
|
||||
ebus_match, ebus_attach, NULL, NULL);
|
||||
|
||||
int ebus_setup_attach_args(struct ebus_softc *, int,
|
||||
struct ebus_attach_args *);
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: esp_obio.c,v 1.13 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: esp_obio.c,v 1.14 2002/10/02 16:02:14 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
@ -76,7 +76,7 @@ int espmatch_obio __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
/* Linkup to the rest of the kernel */
|
||||
CFATTACH_DECL(esp_obio, sizeof(struct esp_softc),
|
||||
espmatch_obio, espattach_obio, NULL, NULL)
|
||||
espmatch_obio, espattach_obio, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Functions and the switch for the MI code.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: fd.c,v 1.93 2002/10/01 18:57:51 thorpej Exp $ */
|
||||
/* $NetBSD: fd.c,v 1.94 2002/10/02 16:02:14 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
@ -187,10 +187,10 @@ void fdcattach_obio __P((struct device *, struct device *, void *));
|
||||
int fdcattach __P((struct fdc_softc *, int));
|
||||
|
||||
CFATTACH_DECL(fdc_mainbus, sizeof(struct fdc_softc),
|
||||
fdcmatch_mainbus, fdcattach_mainbus, NULL, NULL)
|
||||
fdcmatch_mainbus, fdcattach_mainbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(fdc_obio, sizeof(struct fdc_softc),
|
||||
fdcmatch_obio, fdcattach_obio, NULL, NULL)
|
||||
fdcmatch_obio, fdcattach_obio, NULL, NULL);
|
||||
|
||||
__inline struct fd_type *fd_dev_to_type __P((struct fd_softc *, dev_t));
|
||||
|
||||
@ -262,7 +262,7 @@ int fdmatch __P((struct device *, struct cfdata *, void *));
|
||||
void fdattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(fd, sizeof(struct fd_softc),
|
||||
fdmatch, fdattach, NULL, NULL)
|
||||
fdmatch, fdattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver fd_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ie_obio.c,v 1.26 2002/10/01 18:57:52 thorpej Exp $ */
|
||||
/* $NetBSD: if_ie_obio.c,v 1.27 2002/10/02 16:02:15 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
@ -133,7 +133,7 @@ int ie_obio_match __P((struct device *, struct cfdata *, void *));
|
||||
void ie_obio_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ie_obio, sizeof(struct ie_softc),
|
||||
ie_obio_match, ie_obio_attach, NULL, NULL)
|
||||
ie_obio_match, ie_obio_attach, NULL, NULL);
|
||||
|
||||
/* Supported media */
|
||||
static int media[] = {
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_le_obio.c,v 1.15 2002/10/01 18:57:52 thorpej Exp $ */
|
||||
/* $NetBSD: if_le_obio.c,v 1.16 2002/10/02 16:02:15 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
@ -87,7 +87,7 @@ static int lemedia[] = {
|
||||
#define NLEMEDIA (sizeof(lemedia) / sizeof(lemedia[0]))
|
||||
|
||||
CFATTACH_DECL(le_obio, sizeof(struct le_softc),
|
||||
lematch_obio, leattach_obio, NULL, NULL)
|
||||
lematch_obio, leattach_obio, NULL, NULL);
|
||||
|
||||
extern struct cfdriver le_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: obio.c,v 1.57 2002/10/01 18:57:52 thorpej Exp $ */
|
||||
/* $NetBSD: obio.c,v 1.58 2002/10/02 16:02:15 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997,1998 The NetBSD Foundation, Inc.
|
||||
@ -77,7 +77,7 @@ static int obiomatch __P((struct device *, struct cfdata *, void *));
|
||||
static void obioattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(obio, sizeof(union obio_softc),
|
||||
obiomatch, obioattach, NULL, NULL)
|
||||
obiomatch, obioattach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* This `obio4_busattachargs' data structure only exists to pass down
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: pckbc_js.c,v 1.4 2002/10/01 18:57:52 thorpej Exp $ */
|
||||
/* $NetBSD: pckbc_js.c,v 1.5 2002/10/02 16:02:15 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002 Valeriy E. Ushakov
|
||||
@ -66,11 +66,11 @@ static void pckbc_js_intr_establish(struct pckbc_softc *, pckbc_slot_t);
|
||||
|
||||
/* Mr.Coffee */
|
||||
CFATTACH_DECL(pckbc_obio, sizeof(struct pckbc_js_softc),
|
||||
pckbc_obio_match, pckbc_obio_attach, NULL, NULL)
|
||||
pckbc_obio_match, pckbc_obio_attach, NULL, NULL);
|
||||
|
||||
/* ms-IIep */
|
||||
CFATTACH_DECL(pckbc_ebus, sizeof(struct pckbc_js_softc),
|
||||
pckbc_ebus_match, pckbc_ebus_attach, NULL, NULL)
|
||||
pckbc_ebus_match, pckbc_ebus_attach, NULL, NULL);
|
||||
|
||||
#define PCKBC_PROM_DEVICE_NAME "8042"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: power.c,v 1.14 2002/10/01 18:57:52 thorpej Exp $ */
|
||||
/* $NetBSD: power.c,v 1.15 2002/10/02 16:02:16 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
@ -52,7 +52,7 @@ static int powermatch __P((struct device *, struct cfdata *, void *));
|
||||
static void powerattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(power, sizeof(struct device),
|
||||
powermatch, powerattach, NULL, NULL)
|
||||
powermatch, powerattach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* This is the driver for the "power" register available on some Sun4m
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: rtc.c,v 1.7 2002/10/01 18:57:52 thorpej Exp $ */
|
||||
/* $NetBSD: rtc.c,v 1.8 2002/10/02 16:02:16 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Valeriy E. Ushakov
|
||||
@ -62,7 +62,7 @@ static int rtcmatch_ebus(struct device *, struct cfdata *, void *);
|
||||
static void rtcattach_ebus(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(rtc_ebus, sizeof(struct rtc_ebus_softc),
|
||||
rtcmatch_ebus, rtcattach_ebus, NULL, NULL)
|
||||
rtcmatch_ebus, rtcattach_ebus, NULL, NULL);
|
||||
|
||||
/* XXX: global TOD clock handle (sparc/clock.c) */
|
||||
extern todr_chip_handle_t todr_handle;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sbus.c,v 1.51 2002/10/01 18:57:52 thorpej Exp $ */
|
||||
/* $NetBSD: sbus.c,v 1.52 2002/10/02 16:02:16 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -126,13 +126,13 @@ static int sbus_error __P((void));
|
||||
int (*sbuserr_handler) __P((void));
|
||||
|
||||
CFATTACH_DECL(sbus_mainbus, sizeof(struct sbus_softc),
|
||||
sbus_match_mainbus, sbus_attach_mainbus, NULL, NULL)
|
||||
sbus_match_mainbus, sbus_attach_mainbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(sbus_iommu, sizeof(struct sbus_softc),
|
||||
sbus_match_iommu, sbus_attach_iommu, NULL, NULL)
|
||||
sbus_match_iommu, sbus_attach_iommu, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(sbus_xbox, sizeof(struct sbus_softc),
|
||||
sbus_match_xbox, sbus_attach_xbox, NULL, NULL)
|
||||
sbus_match_xbox, sbus_attach_xbox, NULL, NULL);
|
||||
|
||||
extern struct cfdriver sbus_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sw.c,v 1.9 2002/10/01 18:57:52 thorpej Exp $ */
|
||||
/* $NetBSD: sw.c,v 1.10 2002/10/02 16:02:16 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -220,7 +220,7 @@ void sw_intr_off __P((struct ncr5380_softc *));
|
||||
|
||||
/* The Sun "SCSI Weird" 4/100 obio controller. */
|
||||
CFATTACH_DECL(sw, sizeof(struct sw_softc),
|
||||
sw_match, sw_attach, NULL, NULL)
|
||||
sw_match, sw_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
sw_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: tctrl.c,v 1.17 2002/10/01 18:57:53 thorpej Exp $ */
|
||||
/* $NetBSD: tctrl.c,v 1.18 2002/10/02 16:02:16 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -149,7 +149,7 @@ static int tctrl_apm_record_event __P((struct tctrl_softc *sc,
|
||||
static void tctrl_init_lcd __P((void));
|
||||
|
||||
CFATTACH_DECL(tctrl, sizeof(struct tctrl_softc),
|
||||
tctrl_match, tctrl_attach, NULL, NULL)
|
||||
tctrl_match, tctrl_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver tctrl_cd;
|
||||
/* XXX wtf is this? see i386/apm.c */
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: vme_machdep.c,v 1.38 2002/10/01 18:57:53 thorpej Exp $ */
|
||||
/* $NetBSD: vme_machdep.c,v 1.39 2002/10/02 16:02:16 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
@ -158,10 +158,10 @@ static paddr_t sparc_vme_dmamem_mmap __P((bus_dma_tag_t,
|
||||
int sparc_vme_mmap_cookie __P((vme_addr_t, vme_am_t, bus_space_handle_t *));
|
||||
|
||||
CFATTACH_DECL(vme_mainbus, sizeof(struct sparcvme_softc),
|
||||
vmematch_mainbus, vmeattach_mainbus, NULL, NULL)
|
||||
vmematch_mainbus, vmeattach_mainbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(vme_iommu, sizeof(struct sparcvme_softc),
|
||||
vmematch_iommu, vmeattach_iommu, NULL, NULL)
|
||||
vmematch_iommu, vmeattach_iommu, NULL, NULL);
|
||||
|
||||
int (*vmeerr_handler) __P((void));
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: zs.c,v 1.90 2002/10/01 18:57:53 thorpej Exp $ */
|
||||
/* $NetBSD: zs.c,v 1.91 2002/10/02 16:02:17 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -178,17 +178,17 @@ static int zs_match_bootbus __P((struct device *, struct cfdata *, void *));
|
||||
static void zs_attach_bootbus __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(zs_bootbus, sizeof(struct zsc_softc),
|
||||
zs_match_bootbus, zs_attach_bootbus, NULL, NULL)
|
||||
zs_match_bootbus, zs_attach_bootbus, NULL, NULL);
|
||||
#endif /* SUN4D */
|
||||
|
||||
static void zs_attach __P((struct zsc_softc *, struct zsdevice *, int));
|
||||
static int zs_print __P((void *, const char *name));
|
||||
|
||||
CFATTACH_DECL(zs_mainbus, sizeof(struct zsc_softc),
|
||||
zs_match_mainbus, zs_attach_mainbus, NULL, NULL)
|
||||
zs_match_mainbus, zs_attach_mainbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(zs_obio, sizeof(struct zsc_softc),
|
||||
zs_match_obio, zs_attach_obio, NULL, NULL)
|
||||
zs_match_obio, zs_attach_obio, NULL, NULL);
|
||||
|
||||
extern struct cfdriver zs_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: autoconf.c,v 1.180 2002/10/01 18:57:48 thorpej Exp $ */
|
||||
/* $NetBSD: autoconf.c,v 1.181 2002/10/02 16:02:08 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
@ -1337,7 +1337,7 @@ extern struct sparc_bus_space_tag mainbus_space_tag;
|
||||
}
|
||||
|
||||
CFATTACH_DECL(mainbus, sizeof(struct device),
|
||||
mainbus_match, mainbus_attach, NULL, NULL)
|
||||
mainbus_match, mainbus_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
makememarr(ap, max, which)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: auxiotwo.c,v 1.5 2002/10/01 18:57:48 thorpej Exp $ */
|
||||
/* $NetBSD: auxiotwo.c,v 1.6 2002/10/02 16:02:09 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
@ -61,7 +61,7 @@ static void auxiotwoattach
|
||||
__P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(auxiotwo_obio, sizeof(struct device),
|
||||
auxiotwomatch, auxiotwoattach, NULL, NULL)
|
||||
auxiotwomatch, auxiotwoattach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* The OPENPROM calls this "auxio2".
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: auxreg.c,v 1.31 2002/10/01 18:57:48 thorpej Exp $ */
|
||||
/* $NetBSD: auxreg.c,v 1.32 2002/10/02 16:02:09 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -67,10 +67,10 @@ static void auxregattach_obio
|
||||
static void auxregattach __P((struct device *));
|
||||
|
||||
CFATTACH_DECL(auxreg_mainbus, sizeof(struct device),
|
||||
auxregmatch_mainbus, auxregattach_mainbus, NULL, NULL)
|
||||
auxregmatch_mainbus, auxregattach_mainbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(auxreg_obio, sizeof(struct device),
|
||||
auxregmatch_obio, auxregattach_obio, NULL, NULL)
|
||||
auxregmatch_obio, auxregattach_obio, NULL, NULL);
|
||||
|
||||
#ifdef BLINK
|
||||
static struct callout blink_ch = CALLOUT_INITIALIZER;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cpu.c,v 1.133 2002/10/01 18:57:48 thorpej Exp $ */
|
||||
/* $NetBSD: cpu.c,v 1.134 2002/10/02 16:02:09 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
@ -104,14 +104,14 @@ static void cpu_mainbus_attach __P((struct device *, struct device *, void *));
|
||||
int cpu_mainbus_match __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
CFATTACH_DECL(cpu_mainbus, sizeof(struct cpu_softc),
|
||||
cpu_mainbus_match, cpu_mainbus_attach, NULL, NULL)
|
||||
cpu_mainbus_match, cpu_mainbus_attach, NULL, NULL);
|
||||
|
||||
#if defined(SUN4D)
|
||||
static int cpu_cpuunit_match(struct device *, struct cfdata *, void *);
|
||||
static void cpu_cpuunit_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(cpu_cpuunit, sizeof(struct cpu_softc),
|
||||
cpu_cpuunit_match, cpu_cpuunit_attach, NULL, NULL)
|
||||
cpu_cpuunit_match, cpu_cpuunit_attach, NULL, NULL);
|
||||
#endif /* SUN4D */
|
||||
|
||||
static void cpu_attach(struct cpu_softc *, int, int);
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cpuunit.c,v 1.5 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: cpuunit.c,v 1.6 2002/10/02 16:02:10 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
@ -65,7 +65,7 @@ static int cpuunit_match(struct device *, struct cfdata *, void *);
|
||||
static void cpuunit_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(cpuunit, sizeof(struct cpuunit_softc),
|
||||
cpuunit_match, cpuunit_attach, NULL, NULL)
|
||||
cpuunit_match, cpuunit_attach, NULL, NULL);
|
||||
|
||||
static int cpuunit_print(void *, const char *);
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: eeprom.c,v 1.3 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: eeprom.c,v 1.4 2002/10/02 16:02:10 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
@ -65,7 +65,7 @@ static int eeprom_match(struct device *, struct cfdata *, void *);
|
||||
static void eeprom_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(eeprom, sizeof(struct device),
|
||||
eeprom_match, eeprom_attach, NULL, NULL)
|
||||
eeprom_match, eeprom_attach, NULL, NULL);
|
||||
|
||||
/* We support only one eeprom device */
|
||||
static int eeprom_attached;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: iommu.c,v 1.71 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: iommu.c,v 1.72 2002/10/02 16:02:10 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
@ -85,7 +85,7 @@ static void iommu_copy_prom_entries __P((struct iommu_softc *));
|
||||
#endif
|
||||
|
||||
CFATTACH_DECL(iommu, sizeof(struct iommu_softc),
|
||||
iommu_match, iommu_attach, NULL, NULL)
|
||||
iommu_match, iommu_attach, NULL, NULL);
|
||||
|
||||
/* IOMMU DMA map functions */
|
||||
int iommu_dmamap_create __P((bus_dma_tag_t, bus_size_t, int, bus_size_t,
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: memecc.c,v 1.5 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: memecc.c,v 1.6 2002/10/02 16:02:10 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -64,7 +64,7 @@ static int memecc_error __P((void));
|
||||
int (*memerr_handler) __P((void));
|
||||
|
||||
CFATTACH_DECL(eccmemctl, sizeof(struct memecc_softc),
|
||||
memecc_match, memecc_attach, NULL, NULL)
|
||||
memecc_match, memecc_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
memecc_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: memreg.c,v 1.34 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: memreg.c,v 1.35 2002/10/02 16:02:11 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -73,10 +73,10 @@ static void memregattach_obio
|
||||
__P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(memreg_mainbus, sizeof(struct device),
|
||||
memregmatch_mainbus, memregattach_mainbus, NULL, NULL)
|
||||
memregmatch_mainbus, memregattach_mainbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(memreg_obio, sizeof(struct device),
|
||||
memregmatch_obio, memregattach_obio, NULL, NULL)
|
||||
memregmatch_obio, memregattach_obio, NULL, NULL);
|
||||
|
||||
#if defined(SUN4M)
|
||||
static void hardmemerr4m __P((unsigned, u_int, u_int, u_int, u_int));
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: mkclock.c,v 1.3 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: mkclock.c,v 1.4 2002/10/02 16:02:11 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
@ -72,10 +72,10 @@ static void clockattach_obio(struct device *, struct device *, void *);
|
||||
static void clockattach(int, bus_space_tag_t, bus_space_handle_t);
|
||||
|
||||
CFATTACH_DECL(clock_mainbus, sizeof(struct device),
|
||||
clockmatch_mainbus, clockattach_mainbus, NULL, NULL)
|
||||
clockmatch_mainbus, clockattach_mainbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(clock_obio, sizeof(struct device),
|
||||
clockmatch_obio, clockattach_obio, NULL, NULL)
|
||||
clockmatch_obio, clockattach_obio, NULL, NULL);
|
||||
|
||||
/* Imported from clock.c: */
|
||||
extern todr_chip_handle_t todr_handle;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: msiiep.c,v 1.13 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: msiiep.c,v 1.14 2002/10/02 16:02:11 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Valeriy E. Ushakov
|
||||
@ -27,7 +27,7 @@
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: msiiep.c,v 1.13 2002/10/01 18:57:49 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: msiiep.c,v 1.14 2002/10/02 16:02:11 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/malloc.h>
|
||||
@ -69,7 +69,7 @@ static void msiiep_attach(struct device *, struct device *, void *);
|
||||
/* static int msiiep_print(void *, const char *); */
|
||||
|
||||
CFATTACH_DECL(msiiep, sizeof(struct device),
|
||||
msiiep_match, msiiep_attach, NULL, NULL)
|
||||
msiiep_match, msiiep_attach, NULL, NULL);
|
||||
|
||||
static struct idprom msiiep_idprom_store;
|
||||
static void msiiep_getidprom(void);
|
||||
@ -83,7 +83,7 @@ static void mspcic_attach(struct device *, struct device *, void *);
|
||||
static int mspcic_print(void *, const char *);
|
||||
|
||||
CFATTACH_DECL(mspcic, sizeof(struct mspcic_softc),
|
||||
mspcic_match, mspcic_attach, NULL, NULL)
|
||||
mspcic_match, mspcic_attach, NULL, NULL);
|
||||
|
||||
/**
|
||||
* ms-IIep PCIC registers are mapped at fixed VA
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: oclock.c,v 1.3 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: oclock.c,v 1.4 2002/10/02 16:02:11 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
@ -68,7 +68,7 @@ static int oclockmatch(struct device *, struct cfdata *, void *);
|
||||
static void oclockattach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(oclock, sizeof(struct device),
|
||||
oclockmatch, oclockattach, NULL, NULL)
|
||||
oclockmatch, oclockattach, NULL, NULL);
|
||||
|
||||
#if defined(SUN4)
|
||||
static bus_space_tag_t i7_bt;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: timer.c,v 1.9 2002/10/01 18:57:49 thorpej Exp $ */
|
||||
/* $NetBSD: timer.c,v 1.10 2002/10/02 16:02:11 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -191,5 +191,5 @@ timerattach_obio(struct device *parent, struct device *self, void *aux)
|
||||
}
|
||||
|
||||
CFATTACH_DECL(timer_obio, sizeof(struct device),
|
||||
timermatch_obio, timerattach_obio, NULL, NULL)
|
||||
timermatch_obio, timerattach_obio, NULL, NULL);
|
||||
#endif /* SUN4 || SUN4M */
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: timer_msiiep.c,v 1.3 2002/10/01 18:57:50 thorpej Exp $ */
|
||||
/* $NetBSD: timer_msiiep.c,v 1.4 2002/10/02 16:02:11 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -220,4 +220,4 @@ timerattach_msiiep(struct device *parent, struct device *self, void *aux)
|
||||
}
|
||||
|
||||
CFATTACH_DECL(timer_msiiep, sizeof(struct device),
|
||||
timermatch_msiiep, timerattach_msiiep, NULL, NULL)
|
||||
timermatch_msiiep, timerattach_msiiep, NULL, NULL);
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: timer_sun4.c,v 1.3 2002/10/01 18:57:50 thorpej Exp $ */
|
||||
/* $NetBSD: timer_sun4.c,v 1.4 2002/10/02 16:02:12 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -162,7 +162,7 @@ timerattach_mainbus(struct device *parent, struct device *self, void *aux)
|
||||
}
|
||||
|
||||
CFATTACH_DECL(timer_mainbus, sizeof(struct device),
|
||||
timermatch_mainbus, timerattach_mainbus, NULL, NULL)
|
||||
timermatch_mainbus, timerattach_mainbus, NULL, NULL);
|
||||
#endif /* SUN4C */
|
||||
|
||||
#if defined(SUN4)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: auxio.c,v 1.8 2002/10/01 18:40:06 thorpej Exp $ */
|
||||
/* $NetBSD: auxio.c,v 1.9 2002/10/02 16:02:17 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000, 2001 Matthew R. Green
|
||||
@ -83,10 +83,10 @@ int auxio_sbus_match(struct device *, struct cfdata *, void *);
|
||||
void auxio_sbus_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(auxio_ebus, sizeof(struct auxio_softc),
|
||||
auxio_ebus_match, auxio_ebus_attach, NULL, NULL)
|
||||
auxio_ebus_match, auxio_ebus_attach, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(auxio_sbus, sizeof(struct auxio_softc),
|
||||
auxio_sbus_match, auxio_sbus_attach, NULL, NULL)
|
||||
auxio_sbus_match, auxio_sbus_attach, NULL, NULL);
|
||||
|
||||
#ifdef BLINK
|
||||
static struct callout blink_ch = CALLOUT_INITIALIZER;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: com_ebus.c,v 1.16 2002/10/01 18:40:06 thorpej Exp $ */
|
||||
/* $NetBSD: com_ebus.c,v 1.17 2002/10/02 16:02:18 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999, 2000 Matthew R. Green
|
||||
@ -57,7 +57,7 @@ int com_ebus_match __P((struct device *, struct cfdata *, void *));
|
||||
void com_ebus_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(com_ebus, sizeof(struct com_softc),
|
||||
com_ebus_match, com_ebus_attach, NULL, NULL)
|
||||
com_ebus_match, com_ebus_attach, NULL, NULL);
|
||||
|
||||
static char *com_names[] = {
|
||||
"su",
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ebus.c,v 1.33 2002/10/01 18:40:06 thorpej Exp $ */
|
||||
/* $NetBSD: ebus.c,v 1.34 2002/10/02 16:02:18 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999, 2000, 2001 Matthew R. Green
|
||||
@ -99,7 +99,7 @@ int ebus_match __P((struct device *, struct cfdata *, void *));
|
||||
void ebus_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ebus, sizeof(struct ebus_softc),
|
||||
ebus_match, ebus_attach, NULL, NULL)
|
||||
ebus_match, ebus_attach, NULL, NULL);
|
||||
|
||||
bus_space_tag_t ebus_alloc_bus_tag __P((struct ebus_softc *, int));
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: lpt_ebus.c,v 1.15 2002/10/01 18:40:06 thorpej Exp $ */
|
||||
/* $NetBSD: lpt_ebus.c,v 1.16 2002/10/02 16:02:18 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999, 2000 Matthew R. Green
|
||||
@ -49,7 +49,7 @@ int lpt_ebus_match __P((struct device *, struct cfdata *, void *));
|
||||
void lpt_ebus_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(lpt_ebus, sizeof(struct lpt_softc),
|
||||
lpt_ebus_match, lpt_ebus_attach, NULL, NULL)
|
||||
lpt_ebus_match, lpt_ebus_attach, NULL, NULL);
|
||||
|
||||
#define ROM_LPT_NAME "ecpp"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: pcons.c,v 1.12 2002/10/01 18:40:07 thorpej Exp $ */
|
||||
/* $NetBSD: pcons.c,v 1.13 2002/10/02 16:02:18 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 Eduardo E. Horvath
|
||||
@ -61,7 +61,7 @@ static int pconsmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void pconsattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(pcons, sizeof(struct pconssoftc),
|
||||
pconsmatch, pconsattach, NULL, NULL)
|
||||
pconsmatch, pconsattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver pcons_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: power.c,v 1.3 2002/10/01 18:40:07 thorpej Exp $ */
|
||||
/* $NetBSD: power.c,v 1.4 2002/10/02 16:02:18 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
@ -52,7 +52,7 @@ static int powermatch __P((struct device *, struct cfdata *, void *));
|
||||
static void powerattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(power, sizeof(struct device),
|
||||
powermatch, powerattach, NULL, NULL)
|
||||
powermatch, powerattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver power_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: psycho.c,v 1.54 2002/10/01 18:40:07 thorpej Exp $ */
|
||||
/* $NetBSD: psycho.c,v 1.55 2002/10/02 16:02:19 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001, 2002 Eduardo E. Horvath
|
||||
@ -126,7 +126,7 @@ static void psycho_attach __P((struct device *, struct device *, void *));
|
||||
static int psycho_print __P((void *aux, const char *p));
|
||||
|
||||
CFATTACH_DECL(psycho, sizeof(struct psycho_softc),
|
||||
psycho_match, psycho_attach, NULL, NULL)
|
||||
psycho_match, psycho_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* "sabre" is the UltraSPARC IIi onboard UPA to PCI bridge. It manages a
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sab.c,v 1.5 2002/10/01 18:40:07 thorpej Exp $ */
|
||||
/* $NetBSD: sab.c,v 1.6 2002/10/02 16:02:19 thorpej Exp $ */
|
||||
/* $OpenBSD: sab.c,v 1.7 2002/04/08 17:49:42 jason Exp $ */
|
||||
|
||||
/*
|
||||
@ -148,12 +148,12 @@ int sabtty_cngetc(struct sabtty_softc *);
|
||||
void sabtty_abort(struct sabtty_softc *);
|
||||
|
||||
CFATTACH_DECL(sab, sizeof(struct sab_softc),
|
||||
sab_match, sab_attach, NULL, NULL)
|
||||
sab_match, sab_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver sab_cd;
|
||||
|
||||
CFATTACH_DECL(sabtty, sizeof(struct sabtty_softc),
|
||||
sabtty_match, sabtty_attach, NULL, NULL)
|
||||
sabtty_match, sabtty_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver sabtty_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sbus.c,v 1.54 2002/10/01 18:40:08 thorpej Exp $ */
|
||||
/* $NetBSD: sbus.c,v 1.55 2002/10/02 16:02:19 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999-2002 Eduardo Horvath
|
||||
@ -94,7 +94,7 @@ void sbus_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
|
||||
CFATTACH_DECL(sbus, sizeof(struct sbus_softc),
|
||||
sbus_match, sbus_attach, NULL, NULL)
|
||||
sbus_match, sbus_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver sbus_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: upa.c,v 1.12 2002/10/01 18:40:08 thorpej Exp $ */
|
||||
/* $NetBSD: upa.c,v 1.13 2002/10/02 16:02:20 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -126,7 +126,7 @@ int upa_match_mainbus __P((struct device *, struct cfdata *, void *));
|
||||
void upa_attach_mainbus __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(upa, sizeof(struct upa_softc),
|
||||
upa_match, upa_attach, NULL, NULL)
|
||||
upa_match, upa_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver upa_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: zs.c,v 1.42 2002/10/01 18:40:08 thorpej Exp $ */
|
||||
/* $NetBSD: zs.c,v 1.43 2002/10/02 16:02:20 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -163,10 +163,10 @@ static int zs_print __P((void *, const char *name));
|
||||
|
||||
/* Do we really need this ? */
|
||||
CFATTACH_DECL(zs, sizeof(struct zsc_softc),
|
||||
zs_match_mainbus, zs_attach_mainbus, NULL, NULL)
|
||||
zs_match_mainbus, zs_attach_mainbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(zs_mainbus, sizeof(struct zsc_softc),
|
||||
zs_match_mainbus, zs_attach_mainbus, NULL, NULL)
|
||||
zs_match_mainbus, zs_attach_mainbus, NULL, NULL);
|
||||
|
||||
extern struct cfdriver zs_cd;
|
||||
extern int stdinnode;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: autoconf.c,v 1.65 2002/10/01 18:40:09 thorpej Exp $ */
|
||||
/* $NetBSD: autoconf.c,v 1.66 2002/10/02 16:02:20 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
@ -755,7 +755,7 @@ extern struct sparc_bus_space_tag mainbus_space_tag;
|
||||
}
|
||||
|
||||
CFATTACH_DECL(mainbus, sizeof(struct device),
|
||||
mainbus_match, mainbus_attach, NULL, NULL)
|
||||
mainbus_match, mainbus_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
PROM_getprop(node, name, size, nitem, bufp)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: clock.c,v 1.52 2002/10/01 18:40:10 thorpej Exp $ */
|
||||
/* $NetBSD: clock.c,v 1.53 2002/10/02 16:02:21 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -136,13 +136,13 @@ static void clockattach __P((int, bus_space_tag_t, bus_space_handle_t));
|
||||
|
||||
|
||||
CFATTACH_DECL(clock_sbus, sizeof(struct device),
|
||||
clockmatch_sbus, clockattach_sbus, NULL, NULL)
|
||||
clockmatch_sbus, clockattach_sbus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(clock_ebus, sizeof(struct device),
|
||||
clockmatch_ebus, clockattach_ebus, NULL, NULL)
|
||||
clockmatch_ebus, clockattach_ebus, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(rtc_ebus, sizeof(struct device),
|
||||
clockmatch_rtc, clockattach_rtc, NULL, NULL)
|
||||
clockmatch_rtc, clockattach_rtc, NULL, NULL);
|
||||
|
||||
extern struct cfdriver clock_cd;
|
||||
|
||||
@ -156,7 +156,7 @@ static void timerattach __P((struct device *, struct device *, void *));
|
||||
struct timerreg_4u timerreg_4u; /* XXX - need more cleanup */
|
||||
|
||||
CFATTACH_DECL(timer, sizeof(struct device),
|
||||
timermatch, timerattach, NULL, NULL)
|
||||
timermatch, timerattach, NULL, NULL);
|
||||
|
||||
int clock_wenable __P((struct todr_chip_handle *, int));
|
||||
struct chiptime;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cpu.c,v 1.25 2002/10/01 18:40:10 thorpej Exp $ */
|
||||
/* $NetBSD: cpu.c,v 1.26 2002/10/02 16:02:21 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
@ -84,7 +84,7 @@ static void cpu_attach __P((struct device *, struct device *, void *));
|
||||
int cpu_match __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
CFATTACH_DECL(cpu, sizeof(struct device),
|
||||
cpu_match, cpu_attach, NULL, NULL)
|
||||
cpu_match, cpu_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver cpu_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: bwtwo_any.c,v 1.7 2002/10/01 05:39:43 thorpej Exp $ */
|
||||
/* $NetBSD: bwtwo_any.c,v 1.8 2002/10/02 16:02:22 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
|
||||
@ -117,10 +117,10 @@ struct bwtwosun2_softc {
|
||||
};
|
||||
|
||||
CFATTACH_DECL(bwtwo_obio, sizeof(struct bwtwosun2_softc),
|
||||
bwtwomatch_any, bwtwoattach_any, NULL, NULL)
|
||||
bwtwomatch_any, bwtwoattach_any, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(bwtwo_obmem, sizeof(struct bwtwosun2_softc),
|
||||
bwtwomatch_any, bwtwoattach_any, NULL, NULL)
|
||||
bwtwomatch_any, bwtwoattach_any, NULL, NULL);
|
||||
|
||||
static int bwtwo_get_video_sun2 __P((struct bwtwo_softc *));
|
||||
static void bwtwo_set_video_sun2 __P((struct bwtwo_softc *, int));
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ec.c,v 1.5 2002/10/01 05:39:44 thorpej Exp $ */
|
||||
/* $NetBSD: if_ec.c,v 1.6 2002/10/02 16:02:22 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
@ -151,7 +151,7 @@ int ec_match __P((struct device *, struct cfdata *, void *));
|
||||
void ec_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ec, sizeof(struct ec_softc),
|
||||
ec_match, ec_attach, NULL, NULL)
|
||||
ec_match, ec_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Copy board memory to kernel.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ie_mbmem.c,v 1.5 2002/10/01 05:39:44 thorpej Exp $ */
|
||||
/* $NetBSD: if_ie_mbmem.c,v 1.6 2002/10/02 16:02:22 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1995 Charles D. Cranor
|
||||
@ -244,7 +244,7 @@ struct ie_mbmem_softc {
|
||||
};
|
||||
|
||||
CFATTACH_DECL(ie_mbmem, sizeof(struct ie_mbmem_softc),
|
||||
ie_mbmem_match, ie_mbmem_attach, NULL, NULL)
|
||||
ie_mbmem_match, ie_mbmem_attach, NULL, NULL);
|
||||
|
||||
#define read_iev(sc, reg) \
|
||||
bus_space_read_2(sc->ievt, sc->ievh, offsetof(struct iembmem, reg))
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ie_obio.c,v 1.4 2002/10/01 05:39:44 thorpej Exp $ */
|
||||
/* $NetBSD: if_ie_obio.c,v 1.5 2002/10/02 16:02:22 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
@ -134,7 +134,7 @@ int ie_obio_match __P((struct device *, struct cfdata *, void *));
|
||||
void ie_obio_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ie_obio, sizeof(struct ie_softc),
|
||||
ie_obio_match, ie_obio_attach, NULL, NULL)
|
||||
ie_obio_match, ie_obio_attach, NULL, NULL);
|
||||
|
||||
/* Supported media */
|
||||
static int media[] = {
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: pcons.c,v 1.4 2002/10/01 05:39:44 thorpej Exp $ */
|
||||
/* $NetBSD: pcons.c,v 1.5 2002/10/02 16:02:23 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 Eduardo E. Horvath
|
||||
@ -60,7 +60,7 @@ static int pconsmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void pconsattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(pcons, sizeof(struct pconssoftc),
|
||||
pconsmatch, pconsattach, NULL, NULL)
|
||||
pconsmatch, pconsattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver pcons_cd;
|
||||
static struct cnm_state pcons_cnm_state;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sc_mbmem.c,v 1.5 2002/10/01 05:39:44 thorpej Exp $ */
|
||||
/* $NetBSD: sc_mbmem.c,v 1.6 2002/10/02 16:02:23 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -106,7 +106,7 @@ static void sunsc_mbmem_attach __P((struct device *, struct device *, void *));
|
||||
static int sunsc_mbmem_intr __P((void *));
|
||||
|
||||
CFATTACH_DECL(sc_mbmem, sizeof(struct sunscpal_softc),
|
||||
sunsc_mbmem_match, sunsc_mbmem_attach, NULL, NULL)
|
||||
sunsc_mbmem_match, sunsc_mbmem_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Options for parity, DMA, and interrupts.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: zs_any.c,v 1.8 2002/10/01 05:39:44 thorpej Exp $ */
|
||||
/* $NetBSD: zs_any.c,v 1.9 2002/10/02 16:02:23 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -83,13 +83,13 @@ static int zs_any_match __P((struct device *, struct cfdata *, void *));
|
||||
static void zs_any_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(zs_obio, sizeof(struct zsc_softc),
|
||||
zs_any_match, zs_any_attach, NULL, NULL)
|
||||
zs_any_match, zs_any_attach, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(zs_obmem, sizeof(struct zsc_softc),
|
||||
zs_any_match, zs_any_attach, NULL, NULL)
|
||||
zs_any_match, zs_any_attach, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(zs_mbmem, sizeof(struct zsc_softc),
|
||||
zs_any_match, zs_any_attach, NULL, NULL)
|
||||
zs_any_match, zs_any_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Is the zs chip present?
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: clock.c,v 1.4 2002/10/01 05:39:45 thorpej Exp $ */
|
||||
/* $NetBSD: clock.c,v 1.5 2002/10/02 16:02:23 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Matthew Fredette
|
||||
@ -99,7 +99,7 @@ static int clock_match __P((struct device *, struct cfdata *, void *args));
|
||||
static void clock_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(clock, sizeof(struct device),
|
||||
clock_match, clock_attach, NULL, NULL)
|
||||
clock_match, clock_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
clock_match(parent, cf, args)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: mbio.c,v 1.10 2002/10/01 05:39:45 thorpej Exp $ */
|
||||
/* $NetBSD: mbio.c,v 1.11 2002/10/02 16:02:23 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -62,7 +62,7 @@ struct mbio_softc {
|
||||
};
|
||||
|
||||
CFATTACH_DECL(mbio, sizeof(struct mbio_softc),
|
||||
mbio_match, mbio_attach, NULL, NULL)
|
||||
mbio_match, mbio_attach, NULL, NULL);
|
||||
|
||||
static paddr_t mbio_bus_mmap __P((bus_space_tag_t, bus_type_t, bus_addr_t,
|
||||
off_t, int, int));
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: mbmem.c,v 1.11 2002/10/01 05:39:45 thorpej Exp $ */
|
||||
/* $NetBSD: mbmem.c,v 1.12 2002/10/02 16:02:23 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -64,7 +64,7 @@ struct mbmem_softc {
|
||||
};
|
||||
|
||||
CFATTACH_DECL(mbmem, sizeof(struct mbmem_softc),
|
||||
mbmem_match, mbmem_attach, NULL, NULL)
|
||||
mbmem_match, mbmem_attach, NULL, NULL);
|
||||
|
||||
static paddr_t mbmem_bus_mmap __P((bus_space_tag_t, bus_type_t, bus_addr_t,
|
||||
off_t, int, int));
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: obio.c,v 1.10 2002/10/01 05:39:45 thorpej Exp $ */
|
||||
/* $NetBSD: obio.c,v 1.11 2002/10/02 16:02:24 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -62,7 +62,7 @@ struct obio_softc {
|
||||
};
|
||||
|
||||
CFATTACH_DECL(obio, sizeof(struct obio_softc),
|
||||
obio_match, obio_attach, NULL, NULL)
|
||||
obio_match, obio_attach, NULL, NULL);
|
||||
|
||||
static paddr_t obio_bus_mmap __P((bus_space_tag_t, bus_type_t, bus_addr_t,
|
||||
off_t, int, int));
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: obmem.c,v 1.9 2002/10/01 05:39:45 thorpej Exp $ */
|
||||
/* $NetBSD: obmem.c,v 1.10 2002/10/02 16:02:24 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -58,7 +58,7 @@ struct obmem_softc {
|
||||
};
|
||||
|
||||
CFATTACH_DECL(obmem, sizeof(struct obmem_softc),
|
||||
obmem_match, obmem_attach, NULL, NULL)
|
||||
obmem_match, obmem_attach, NULL, NULL);
|
||||
|
||||
static paddr_t obmem_bus_mmap __P((bus_space_tag_t, bus_type_t, bus_addr_t,
|
||||
off_t, int, int));
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: tod.c,v 1.5 2002/10/01 05:39:45 thorpej Exp $ */
|
||||
/* $NetBSD: tod.c,v 1.6 2002/10/02 16:02:24 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Matthew Fredette
|
||||
@ -80,10 +80,10 @@ static void tod_vme_attach __P((struct device *, struct device *, void *));
|
||||
static void tod_attach __P((struct mm58167_softc *));
|
||||
|
||||
CFATTACH_DECL(tod_obio, sizeof(struct mm58167_softc),
|
||||
tod_obio_match, tod_obio_attach, NULL, NULL)
|
||||
tod_obio_match, tod_obio_attach, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(tod_vme, sizeof(struct mm58167_softc),
|
||||
tod_vme_match, tod_vme_attach, NULL, NULL)
|
||||
tod_vme_match, tod_vme_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
tod_obio_match(parent, cf, args)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: bw2.c,v 1.21 2002/10/01 05:32:42 thorpej Exp $ */
|
||||
/* $NetBSD: bw2.c,v 1.22 2002/10/02 16:02:24 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -87,7 +87,7 @@ static void bw2attach __P((struct device *, struct device *, void *));
|
||||
static int bw2match __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
CFATTACH_DECL(bwtwo, sizeof(struct bw2_softc),
|
||||
bw2match, bw2attach, NULL, NULL)
|
||||
bw2match, bw2attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver bwtwo_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cg2.c,v 1.20 2002/10/01 05:32:42 thorpej Exp $ */
|
||||
/* $NetBSD: cg2.c,v 1.21 2002/10/02 16:02:24 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -98,7 +98,7 @@ static void cg2attach __P((struct device *, struct device *, void *));
|
||||
static int cg2match __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
CFATTACH_DECL(cgtwo, sizeof(struct cg2_softc),
|
||||
cg2match, cg2attach, NULL, NULL)
|
||||
cg2match, cg2attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver cgtwo_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: cg4.c,v 1.27 2002/10/01 05:32:42 thorpej Exp $ */
|
||||
/* $NetBSD: cg4.c,v 1.28 2002/10/02 16:02:24 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -119,7 +119,7 @@ static void cg4attach __P((struct device *, struct device *, void *));
|
||||
static int cg4match __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
CFATTACH_DECL(cgfour, sizeof(struct cg4_softc),
|
||||
cg4match, cg4attach, NULL, NULL)
|
||||
cg4match, cg4attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver cgfour_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: dma.c,v 1.12 2002/10/01 05:32:42 thorpej Exp $ */
|
||||
/* $NetBSD: dma.c,v 1.13 2002/10/02 16:02:25 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Paul Kranenburg. All rights reserved.
|
||||
@ -57,7 +57,7 @@ static int dmamatch __P((struct device *, struct cfdata *, void *));
|
||||
static void dmaattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(dma, sizeof(struct dma_softc),
|
||||
dmamatch, dmaattach, NULL, NULL)
|
||||
dmamatch, dmaattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver dma_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: eeprom.c,v 1.23 2002/10/01 05:32:42 thorpej Exp $ */
|
||||
/* $NetBSD: eeprom.c,v 1.24 2002/10/02 16:02:25 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -74,7 +74,7 @@ static int eeprom_match __P((struct device *, struct cfdata *, void *));
|
||||
static void eeprom_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(eeprom, sizeof(struct device),
|
||||
eeprom_match, eeprom_attach, NULL, NULL)
|
||||
eeprom_match, eeprom_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
eeprom_match(parent, cf, args)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: esp.c,v 1.16 2002/10/01 05:32:42 thorpej Exp $ */
|
||||
/* $NetBSD: esp.c,v 1.17 2002/10/02 16:02:25 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
@ -74,7 +74,7 @@ static int espmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void espattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(esp, sizeof(struct esp_softc),
|
||||
espmatch, espattach, NULL, NULL)
|
||||
espmatch, espattach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Functions and the switch for the MI code.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: fd.c,v 1.30 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: fd.c,v 1.31 2002/10/02 16:02:25 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1993, 1994, 1995 Charles M. Hannum.
|
||||
@ -151,7 +151,7 @@ int fdcmatch __P((struct device *, struct cfdata *, void *));
|
||||
void fdcattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(fdc, sizeof(struct fdc_softc),
|
||||
fdcmatch, fdcattach, NULL, NULL)
|
||||
fdcmatch, fdcattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver fdc_cd;
|
||||
|
||||
@ -228,7 +228,7 @@ int fdmatch __P((struct device *, struct cfdata *, void *));
|
||||
void fdattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(fd, sizeof(struct fd_softc),
|
||||
fdmatch, fdattach, NULL, NULL)
|
||||
fdmatch, fdattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver fd_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ie_obio.c,v 1.17 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: if_ie_obio.c,v 1.18 2002/10/02 16:02:25 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -79,7 +79,7 @@ static int ie_obio_match __P((struct device *, struct cfdata *, void *));
|
||||
static void ie_obio_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ie_obio, sizeof(struct ie_softc),
|
||||
ie_obio_match, ie_obio_attach, NULL, NULL)
|
||||
ie_obio_match, ie_obio_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
ie_obio_match(parent, cf, args)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ie_sebuf.c,v 1.8 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: if_ie_sebuf.c,v 1.9 2002/10/02 16:02:26 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -90,7 +90,7 @@ static int ie_sebuf_match __P((struct device *, struct cfdata *, void *));
|
||||
static void ie_sebuf_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ie_sebuf, sizeof(struct ie_softc),
|
||||
ie_sebuf_match, ie_sebuf_attach, NULL, NULL)
|
||||
ie_sebuf_match, ie_sebuf_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
ie_sebuf_match(parent, cf, args)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_ie_vme.c,v 1.15 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: if_ie_vme.c,v 1.16 2002/10/02 16:02:26 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -88,7 +88,7 @@ static int ie_vme_match __P((struct device *, struct cfdata *, void *));
|
||||
static void ie_vme_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ie_vme, sizeof(struct ie_softc),
|
||||
ie_vme_match, ie_vme_attach, NULL, NULL)
|
||||
ie_vme_match, ie_vme_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
ie_vme_match(parent, cf, args)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: if_le.c,v 1.44 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: if_le.c,v 1.45 2002/10/02 16:02:26 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -90,7 +90,7 @@ static int le_match __P((struct device *, struct cfdata *, void *));
|
||||
static void le_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(le, sizeof(struct le_softc),
|
||||
le_match, le_attach, NULL, NULL)
|
||||
le_match, le_attach, NULL, NULL);
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_ddb.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: memerr.c,v 1.13 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: memerr.c,v 1.14 2002/10/02 16:02:26 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
@ -78,7 +78,7 @@ static int memerr_interrupt __P((void *));
|
||||
static void memerr_correctable __P((struct memerr_softc *));
|
||||
|
||||
CFATTACH_DECL(memerr, sizeof(struct memerr_softc),
|
||||
memerr_match, memerr_attach, NULL, NULL)
|
||||
memerr_match, memerr_attach, NULL, NULL);
|
||||
|
||||
int memerr_attached;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sebuf.c,v 1.8 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: sebuf.c,v 1.9 2002/10/02 16:02:26 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
@ -85,7 +85,7 @@ static void sebuf_attach __P((struct device *, struct device *, void *));
|
||||
static int sebuf_print __P((void *, const char *));
|
||||
|
||||
CFATTACH_DECL(sebuf, sizeof(struct sebuf_softc),
|
||||
sebuf_match, sebuf_attach, NULL, NULL)
|
||||
sebuf_match, sebuf_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
sebuf_match(parent, cf, args)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: si_obio.c,v 1.24 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: si_obio.c,v 1.25 2002/10/02 16:02:26 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -133,7 +133,7 @@ static int si_obio_match __P((struct device *, struct cfdata *, void *));
|
||||
static void si_obio_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(si_obio, sizeof(struct si_softc),
|
||||
si_obio_match, si_obio_attach, NULL, NULL)
|
||||
si_obio_match, si_obio_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Options for disconnect/reselect, DMA, and interrupts.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: si_sebuf.c,v 1.17 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: si_sebuf.c,v 1.18 2002/10/02 16:02:27 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -139,7 +139,7 @@ static int se_match __P((struct device *, struct cfdata *, void *));
|
||||
static void se_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(si_sebuf, sizeof(struct se_softc),
|
||||
se_match, se_attach, NULL, NULL)
|
||||
se_match, se_attach, NULL, NULL);
|
||||
|
||||
static void se_minphys __P((struct buf *));
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: si_vme.c,v 1.18 2002/10/01 05:32:43 thorpej Exp $ */
|
||||
/* $NetBSD: si_vme.c,v 1.19 2002/10/02 16:02:27 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -124,7 +124,7 @@ static int si_vme_match __P((struct device *, struct cfdata *, void *));
|
||||
static void si_vme_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(si_vmw, sizeof(struct si_softc),
|
||||
si_vme_match, si_vme_attach, NULL, NULL)
|
||||
si_vme_match, si_vme_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Options for disconnect/reselect, DMA, and interrupts.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: xd.c,v 1.38 2002/10/01 05:32:44 thorpej Exp $ */
|
||||
/* $NetBSD: xd.c,v 1.39 2002/10/02 16:02:27 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
*
|
||||
@ -255,10 +255,10 @@ int xdgetdisklabel __P((struct xd_softc *, void *));
|
||||
*/
|
||||
|
||||
CFATTACH_DECL(xdc, sizeof(struct xdc_softc),
|
||||
xdcmatch, xdcattach, NULL, NULL)
|
||||
xdcmatch, xdcattach, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(xd, sizeof(struct xd_softc),
|
||||
xdmatch, xdattach, NULL, NULL)
|
||||
xdmatch, xdattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver xd_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: xy.c,v 1.40 2002/10/01 05:32:44 thorpej Exp $ */
|
||||
/* $NetBSD: xy.c,v 1.41 2002/10/02 16:02:27 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
*
|
||||
@ -197,10 +197,10 @@ int xygetdisklabel __P((struct xy_softc *, void *));
|
||||
*/
|
||||
|
||||
CFATTACH_DECL(xyc, sizeof(struct xyc_softc),
|
||||
xycmatch, xycattach, NULL, NULL)
|
||||
xycmatch, xycattach, NULL, NULL);
|
||||
|
||||
CFATTACH_DECL(xy, sizeof(struct xy_softc),
|
||||
xymatch, xyattach, NULL, NULL)
|
||||
xymatch, xyattach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver xy_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: zs.c,v 1.68 2002/10/01 05:32:44 thorpej Exp $ */
|
||||
/* $NetBSD: zs.c,v 1.69 2002/10/02 16:02:27 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -200,7 +200,7 @@ static void zs_attach __P((struct device *, struct device *, void *));
|
||||
static int zs_print __P((void *, const char *name));
|
||||
|
||||
CFATTACH_DECL(zsc, sizeof(struct zsc_softc),
|
||||
zs_match, zs_attach, NULL, NULL)
|
||||
zs_match, zs_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver zsc_cd;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: clock.c,v 1.48 2002/10/01 05:32:45 thorpej Exp $ */
|
||||
/* $NetBSD: clock.c,v 1.49 2002/10/02 16:02:28 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Gordon W. Ross
|
||||
@ -87,7 +87,7 @@ static int clock_match __P((struct device *, struct cfdata *, void *args));
|
||||
static void clock_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(clock, sizeof(struct device),
|
||||
clock_match, clock_attach, NULL, NULL)
|
||||
clock_match, clock_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
clock_match(parent, cf, args)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: intreg.c,v 1.19 2002/10/01 05:32:46 thorpej Exp $ */
|
||||
/* $NetBSD: intreg.c,v 1.20 2002/10/02 16:02:28 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -67,7 +67,7 @@ static void intreg_attach __P((struct device *, struct device *, void *));
|
||||
static int soft1intr __P((void *));
|
||||
|
||||
CFATTACH_DECL(intreg, sizeof(struct intreg_softc),
|
||||
intreg_match, intreg_attach, NULL, NULL)
|
||||
intreg_match, intreg_attach, NULL, NULL);
|
||||
|
||||
volatile u_char *interrupt_reg;
|
||||
int intreg_attached;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: mainbus.c,v 1.10 2002/10/01 05:32:46 thorpej Exp $ */
|
||||
/* $NetBSD: mainbus.c,v 1.11 2002/10/02 16:02:29 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -46,7 +46,7 @@ static int main_match __P((struct device *, struct cfdata *, void *));
|
||||
static void main_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(mainbus, sizeof(struct device),
|
||||
main_match, main_attach, NULL, NULL)
|
||||
main_match, main_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Probe for the mainbus; always succeeds.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: obio.c,v 1.42 2002/10/01 05:32:46 thorpej Exp $ */
|
||||
/* $NetBSD: obio.c,v 1.43 2002/10/02 16:02:29 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -54,7 +54,7 @@ static int obio_print __P((void *, const char *parentname));
|
||||
static int obio_submatch __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
CFATTACH_DECL(obio, sizeof(struct device),
|
||||
obio_match, obio_attach, NULL, NULL)
|
||||
obio_match, obio_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
obio_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: obmem.c,v 1.17 2002/10/01 05:32:46 thorpej Exp $ */
|
||||
/* $NetBSD: obmem.c,v 1.18 2002/10/02 16:02:29 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -52,7 +52,7 @@ static int obmem_match __P((struct device *, struct cfdata *, void *));
|
||||
static void obmem_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(obmem, sizeof(struct device),
|
||||
obmem_match, obmem_attach, NULL, NULL)
|
||||
obmem_match, obmem_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
obmem_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: vme.c,v 1.12 2002/10/01 05:32:46 thorpej Exp $ */
|
||||
/* $NetBSD: vme.c,v 1.13 2002/10/02 16:02:30 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -67,7 +67,7 @@ static int vme_match __P((struct device *, struct cfdata *, void *));
|
||||
static void vme_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(vme, sizeof(struct device),
|
||||
vme_match, vme_attach, NULL, NULL)
|
||||
vme_match, vme_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
vme_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: clock.c,v 1.22 2002/10/01 05:32:46 thorpej Exp $ */
|
||||
/* $NetBSD: clock.c,v 1.23 2002/10/02 16:02:30 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Gordon W. Ross
|
||||
@ -101,7 +101,7 @@ static int clock_match __P((struct device *, struct cfdata *, void *args));
|
||||
static void clock_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(clock, sizeof(struct device),
|
||||
clock_match, clock_attach, NULL, NULL)
|
||||
clock_match, clock_attach, NULL, NULL);
|
||||
|
||||
#ifdef SUN3_470
|
||||
|
||||
@ -117,7 +117,7 @@ static int oclock_match __P((struct device *, struct cfdata *, void *args));
|
||||
static void oclock_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(oclock, sizeof(struct device),
|
||||
oclock_match, oclock_attach, NULL, NULL)
|
||||
oclock_match, oclock_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Is there an intersil clock?
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: iommu.c,v 1.11 2002/10/01 05:32:47 thorpej Exp $ */
|
||||
/* $NetBSD: iommu.c,v 1.12 2002/10/02 16:02:30 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -59,7 +59,7 @@ static int iommu_match __P((struct device *, struct cfdata *, void *));
|
||||
static void iommu_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(iommu, sizeof(struct device),
|
||||
iommu_match, iommu_attach, NULL, NULL)
|
||||
iommu_match, iommu_attach, NULL, NULL);
|
||||
|
||||
static iommu_pde_t *iommu_va;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: obio.c,v 1.19 2002/10/01 05:32:47 thorpej Exp $ */
|
||||
/* $NetBSD: obio.c,v 1.20 2002/10/02 16:02:30 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -53,7 +53,7 @@ static int obio_print __P((void *, const char *parentname));
|
||||
static int obio_submatch __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
CFATTACH_DECL(obio, sizeof(struct device),
|
||||
obio_match, obio_attach, NULL, NULL)
|
||||
obio_match, obio_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
obio_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: vme.c,v 1.6 2002/10/01 05:32:47 thorpej Exp $ */
|
||||
/* $NetBSD: vme.c,v 1.7 2002/10/02 16:02:31 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -67,7 +67,7 @@ static int vme_match __P((struct device *, struct cfdata *, void *));
|
||||
static void vme_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(vme, sizeof(struct device),
|
||||
vme_match, vme_attach, NULL, NULL)
|
||||
vme_match, vme_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
vme_match(parent, cf, aux)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: autoconf.c,v 1.9 2002/10/01 05:20:21 thorpej Exp $ */
|
||||
/* $NetBSD: autoconf.c,v 1.10 2002/10/02 16:02:31 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
@ -114,7 +114,7 @@ static int mainbus_match __P((struct device *, struct cfdata *, void *));
|
||||
static void mainbus_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(mainbus, sizeof(struct device),
|
||||
mainbus_match, mainbus_attach, NULL, NULL)
|
||||
mainbus_match, mainbus_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Probe for the mainbus; always succeeds.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: vme_sun68k.c,v 1.5 2002/10/01 05:20:21 thorpej Exp $ */
|
||||
/* $NetBSD: vme_sun68k.c,v 1.6 2002/10/02 16:02:31 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998, 2001 The NetBSD Foundation, Inc.
|
||||
@ -102,7 +102,7 @@ static int sun68k_vme_dmamap_load_raw __P((bus_dma_tag_t, bus_dmamap_t,
|
||||
paddr_t sun68k_vme_mmap_cookie __P((vme_addr_t, vme_am_t, bus_space_handle_t *));
|
||||
|
||||
CFATTACH_DECL(sun68kvme, sizeof(struct sun68kvme_softc),
|
||||
sun68kvme_match, sun68kvme_attach, NULL, NULL)
|
||||
sun68kvme_match, sun68kvme_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* The VME bus logic on sun68k machines maps DMA requests in the first MB
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: bi_mainbus.c,v 1.6 2002/10/01 05:18:59 thorpej Exp $ */
|
||||
/* $NetBSD: bi_mainbus.c,v 1.7 2002/10/02 16:02:31 thorpej Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1999 Ludd, University of Lule}, Sweden.
|
||||
* All rights reserved.
|
||||
@ -47,7 +47,7 @@ static int bi_mainbus_match __P((struct device *, struct cfdata *, void *));
|
||||
static void bi_mainbus_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(bi_mainbus, sizeof(struct bi_softc),
|
||||
bi_mainbus_match, bi_mainbus_attach, NULL, NULL)
|
||||
bi_mainbus_match, bi_mainbus_attach, NULL, NULL);
|
||||
|
||||
extern struct vax_bus_space vax_mem_bus_space;
|
||||
extern struct vax_bus_dma_tag vax_bus_dma_tag;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: bi_nmi.c,v 1.3 2002/10/01 05:18:59 thorpej Exp $ */
|
||||
/* $NetBSD: bi_nmi.c,v 1.4 2002/10/02 16:02:32 thorpej Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1999 Ludd, University of Lule}, Sweden.
|
||||
* All rights reserved.
|
||||
@ -103,4 +103,4 @@ bi_nmi_attach(struct device *parent, struct device *self, void *aux)
|
||||
}
|
||||
|
||||
CFATTACH_DECL(bi_nmi, sizeof(struct bi_softc),
|
||||
bi_nmi_match, bi_nmi_attach, NULL, NULL)
|
||||
bi_nmi_match, bi_nmi_attach, NULL, NULL);
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user