Add trailing ; to CFATTACH_DECL.
This commit is contained in:
parent
c859106ab8
commit
c9b3657ce9
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: acpi.c,v 1.17 2002/09/30 20:41:16 thorpej Exp $ */
|
||||
/* $NetBSD: acpi.c,v 1.18 2002/10/02 16:33:35 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 2001 Wasabi Systems, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.17 2002/09/30 20:41:16 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.18 2002/10/02 16:33:35 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -86,7 +86,7 @@ int acpi_print(void *aux, const char *);
|
|||
extern struct cfdriver acpi_cd;
|
||||
|
||||
CFATTACH_DECL(acpi, sizeof(struct acpi_softc),
|
||||
acpi_match, acpi_attach, NULL, NULL)
|
||||
acpi_match, acpi_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* This is a flag we set when the ACPI subsystem is active. Machine
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: acpi_acad.c,v 1.4 2002/09/30 20:41:17 thorpej Exp $ */
|
||||
/* $NetBSD: acpi_acad.c,v 1.5 2002/10/02 16:33:36 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 2001 Wasabi Systems, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_acad.c,v 1.4 2002/09/30 20:41:17 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_acad.c,v 1.5 2002/10/02 16:33:36 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -63,7 +63,7 @@ int acpiacad_match(struct device *, struct cfdata *, void *);
|
|||
void acpiacad_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(acpiacad, sizeof(struct acpiacad_softc),
|
||||
acpiacad_match, acpiacad_attach, NULL, NULL)
|
||||
acpiacad_match, acpiacad_attach, NULL, NULL);
|
||||
|
||||
void acpiacad_get_status(void *);
|
||||
void acpiacad_notify_handler(ACPI_HANDLE, UINT32, void *context);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: acpi_bat.c,v 1.6 2002/09/30 20:41:17 thorpej Exp $ */
|
||||
/* $NetBSD: acpi_bat.c,v 1.7 2002/10/02 16:33:36 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 2001 Bill Sommerfeld.
|
||||
|
@ -48,7 +48,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_bat.c,v 1.6 2002/09/30 20:41:17 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_bat.c,v 1.7 2002/10/02 16:33:36 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -90,7 +90,7 @@ int acpibat_match(struct device *, struct cfdata *, void *);
|
|||
void acpibat_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(acpibat, sizeof(struct acpibat_softc),
|
||||
acpibat_match, acpibat_attach, NULL, NULL)
|
||||
acpibat_match, acpibat_attach, NULL, NULL);
|
||||
|
||||
static void acpibat_get_status(void *);
|
||||
static void acpibat_get_info(void *);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: acpi_button.c,v 1.5 2002/09/30 20:41:17 thorpej Exp $ */
|
||||
/* $NetBSD: acpi_button.c,v 1.6 2002/10/02 16:33:36 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 2001 Wasabi Systems, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_button.c,v 1.5 2002/09/30 20:41:17 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_button.c,v 1.6 2002/10/02 16:33:36 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -66,7 +66,7 @@ int acpibut_match(struct device *, struct cfdata *, void *);
|
|||
void acpibut_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(acpibut, sizeof(struct acpibut_softc),
|
||||
acpibut_match, acpibut_attach, NULL, NULL)
|
||||
acpibut_match, acpibut_attach, NULL, NULL);
|
||||
|
||||
void acpibut_pressed_for_sleep(void *);
|
||||
void acpibut_pressed_for_wakeup(void *);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: acpi_ec.c,v 1.6 2002/09/30 20:41:17 thorpej Exp $ */
|
||||
/* $NetBSD: acpi_ec.c,v 1.7 2002/10/02 16:33:36 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 2001 Wasabi Systems, Inc.
|
||||
|
@ -172,7 +172,7 @@
|
|||
*****************************************************************************/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_ec.c,v 1.6 2002/09/30 20:41:17 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_ec.c,v 1.7 2002/10/02 16:33:36 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -279,7 +279,7 @@ int acpiec_match(struct device *, struct cfdata *, void *);
|
|||
void acpiec_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(acpiec, sizeof(struct acpi_ec_softc),
|
||||
acpiec_match, acpiec_attach, NULL, NULL)
|
||||
acpiec_match, acpiec_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* acpiec_match:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: acpi_lid.c,v 1.5 2002/09/30 20:41:18 thorpej Exp $ */
|
||||
/* $NetBSD: acpi_lid.c,v 1.6 2002/10/02 16:33:37 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 2001 Wasabi Systems, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_lid.c,v 1.5 2002/09/30 20:41:18 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_lid.c,v 1.6 2002/10/02 16:33:37 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -62,7 +62,7 @@ int acpilid_match(struct device *, struct cfdata *, void *);
|
|||
void acpilid_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(acpilid, sizeof(struct acpilid_softc),
|
||||
acpilid_match, acpilid_attach, NULL, NULL)
|
||||
acpilid_match, acpilid_attach, NULL, NULL);
|
||||
|
||||
void acpilid_status_changed(void *);
|
||||
void acpilid_notify_handler(ACPI_HANDLE, UINT32, void *context);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: wd.c,v 1.228 2002/09/30 20:42:10 thorpej Exp $ */
|
||||
/* $NetBSD: wd.c,v 1.229 2002/10/02 16:33:37 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998, 2001 Manuel Bouyer. All rights reserved.
|
||||
|
@ -66,7 +66,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.228 2002/09/30 20:42:10 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.229 2002/10/02 16:33:37 thorpej Exp $");
|
||||
|
||||
#ifndef WDCDEBUG
|
||||
#define WDCDEBUG
|
||||
|
@ -184,7 +184,7 @@ int wdprint __P((void *, char *));
|
|||
void wdperror __P((const struct wd_softc *));
|
||||
|
||||
CFATTACH_DECL(wd, sizeof(struct wd_softc),
|
||||
wdprobe, wdattach, wddetach, wdactivate)
|
||||
wdprobe, wdattach, wddetach, wdactivate);
|
||||
|
||||
extern struct cfdriver wd_cd;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: audio.c,v 1.164 2002/09/30 21:19:38 thorpej Exp $ */
|
||||
/* $NetBSD: audio.c,v 1.165 2002/10/02 16:33:28 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991-1993 Regents of the University of California.
|
||||
|
@ -61,7 +61,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.164 2002/09/30 21:19:38 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.165 2002/10/02 16:33:28 thorpej Exp $");
|
||||
|
||||
#include "audio.h"
|
||||
#if NAUDIO > 0
|
||||
|
@ -199,7 +199,7 @@ struct audio_params audio_default =
|
|||
{ 8000, AUDIO_ENCODING_ULAW, 8, 1, 0, 1, 1 };
|
||||
|
||||
CFATTACH_DECL(audio, sizeof(struct audio_softc),
|
||||
audioprobe, audioattach, audiodetach, audioactivate)
|
||||
audioprobe, audioattach, audiodetach, audioactivate);
|
||||
|
||||
extern struct cfdriver audio_cd;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ni.c,v 1.17 2002/09/30 20:43:55 thorpej Exp $ */
|
||||
/* $NetBSD: if_ni.c,v 1.18 2002/10/02 16:33:38 thorpej Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2000 Ludd, University of Lule}, Sweden. All rights reserved.
|
||||
*
|
||||
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ni.c,v 1.17 2002/09/30 20:43:55 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ni.c,v 1.18 2002/10/02 16:33:38 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "bpfilter.h"
|
||||
|
@ -154,7 +154,7 @@ static int failtest(struct ni_softc *, int, int, int, char *);
|
|||
volatile int endwait, retry; /* Used during autoconfig */
|
||||
|
||||
CFATTACH_DECL(ni, sizeof(struct ni_softc),
|
||||
nimatch, niattach, NULL, NULL)
|
||||
nimatch, niattach, NULL, NULL);
|
||||
|
||||
#define NI_WREG(csr, val) \
|
||||
bus_space_write_4(sc->sc_iot, sc->sc_ioh, csr, val)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: kdb.c,v 1.28 2002/09/30 20:43:56 thorpej Exp $ */
|
||||
/* $NetBSD: kdb.c,v 1.29 2002/10/02 16:33:38 thorpej Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
|
||||
* All rights reserved.
|
||||
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: kdb.c,v 1.28 2002/09/30 20:43:56 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: kdb.c,v 1.29 2002/10/02 16:33:38 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -99,7 +99,7 @@ void kdbsaerror __P((struct device *, int));
|
|||
void kdbgo __P((struct device *, struct mscp_xi *));
|
||||
|
||||
CFATTACH_DECL(kdb, sizeof(struct kdb_softc),
|
||||
kdbmatch, kdbattach, NULL, NULL)
|
||||
kdbmatch, kdbattach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* More driver definitions, for generic MSCP code.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: uba_bi.c,v 1.7 2002/09/30 20:43:56 thorpej Exp $ */
|
||||
/* $NetBSD: uba_bi.c,v 1.8 2002/10/02 16:33:39 thorpej Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1998 Ludd, University of Lule}, Sweden.
|
||||
* All rights reserved.
|
||||
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: uba_bi.c,v 1.7 2002/09/30 20:43:56 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: uba_bi.c,v 1.8 2002/10/02 16:33:39 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -93,7 +93,7 @@ static void bua_purge __P((struct uba_softc *, int));
|
|||
static int allocvec;
|
||||
|
||||
CFATTACH_DECL(uba_bi, sizeof(struct uba_softc),
|
||||
uba_bi_match, uba_bi_attach, NULL, NULL)
|
||||
uba_bi_match, uba_bi_attach, NULL, NULL);
|
||||
|
||||
struct dwbua_regs {
|
||||
struct biiregs bn_biic; /* interface */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bthci.c,v 1.7 2002/10/01 01:41:19 thorpej Exp $ */
|
||||
/* $NetBSD: bthci.c,v 1.8 2002/10/02 16:33:39 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -74,7 +74,7 @@ struct cfdriver bthci_cd = {
|
|||
#endif
|
||||
|
||||
CFATTACH_DECL(bthci, sizeof(struct bthci_softc),
|
||||
bthci_match, bthci_attach, bthci_detach, bthci_activate)
|
||||
bthci_match, bthci_attach, bthci_detach, bthci_activate);
|
||||
|
||||
extern struct cfdriver bthci_cd;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: adv_cardbus.c,v 1.7 2002/09/30 20:52:26 thorpej Exp $ */
|
||||
/* $NetBSD: adv_cardbus.c,v 1.8 2002/10/02 16:33:39 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: adv_cardbus.c,v 1.7 2002/09/30 20:52:26 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: adv_cardbus.c,v 1.8 2002/10/02 16:33:39 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -94,7 +94,7 @@ void adv_cardbus_attach __P((struct device *, struct device *, void *));
|
|||
int adv_cardbus_detach __P((struct device *, int));
|
||||
|
||||
CFATTACH_DECL(adv_cardbus, sizeof(struct adv_cardbus_softc),
|
||||
adv_cardbus_match, adv_cardbus_attach, adv_cardbus_detach, NULL)
|
||||
adv_cardbus_match, adv_cardbus_attach, adv_cardbus_detach, NULL);
|
||||
|
||||
int
|
||||
adv_cardbus_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ahc_cardbus.c,v 1.8 2002/09/30 20:52:26 thorpej Exp $ */
|
||||
/* $NetBSD: ahc_cardbus.c,v 1.9 2002/10/02 16:33:40 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -45,7 +45,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahc_cardbus.c,v 1.8 2002/09/30 20:52:26 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahc_cardbus.c,v 1.9 2002/10/02 16:33:40 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -91,7 +91,7 @@ void ahc_cardbus_attach __P((struct device *, struct device *, void *));
|
|||
int ahc_cardbus_detach __P((struct device *, int));
|
||||
|
||||
CFATTACH_DECL(ahc_cardbus, sizeof(struct ahc_cardbus_softc),
|
||||
ahc_cardbus_match, ahc_cardbus_attach, ahc_cardbus_detach, ahc_activate)
|
||||
ahc_cardbus_match, ahc_cardbus_attach, ahc_cardbus_detach, ahc_activate);
|
||||
|
||||
int
|
||||
ahc_cardbus_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cardbus.c,v 1.45 2002/09/30 20:52:26 thorpej Exp $ */
|
||||
/* $NetBSD: cardbus.c,v 1.46 2002/10/02 16:33:40 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997, 1998, 1999 and 2000
|
||||
|
@ -33,7 +33,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: cardbus.c,v 1.45 2002/09/30 20:52:26 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cardbus.c,v 1.46 2002/10/02 16:33:40 thorpej Exp $");
|
||||
|
||||
#include "opt_cardbus.h"
|
||||
|
||||
|
@ -88,7 +88,7 @@ static void enable_function(struct cardbus_softc *, int, int);
|
|||
static void disable_function(struct cardbus_softc *, int);
|
||||
|
||||
CFATTACH_DECL(cardbus, sizeof(struct cardbus_softc),
|
||||
cardbusmatch, cardbusattach, NULL, NULL)
|
||||
cardbusmatch, cardbusattach, NULL, NULL);
|
||||
|
||||
#ifndef __NetBSD_Version__
|
||||
struct cfdriver cardbus_cd = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cardslot.c,v 1.20 2002/09/30 20:52:27 thorpej Exp $ */
|
||||
/* $NetBSD: cardslot.c,v 1.21 2002/10/02 16:33:40 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999 and 2000
|
||||
|
@ -33,7 +33,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: cardslot.c,v 1.20 2002/09/30 20:52:27 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cardslot.c,v 1.21 2002/10/02 16:33:40 thorpej Exp $");
|
||||
|
||||
#include "opt_cardslot.h"
|
||||
|
||||
|
@ -75,7 +75,7 @@ static int cardslot_16_print __P((void *, const char *));
|
|||
static int cardslot_16_submatch __P((struct device *, struct cfdata *,void *));
|
||||
|
||||
CFATTACH_DECL(cardslot, sizeof(struct cardslot_softc),
|
||||
cardslotmatch, cardslotattach, NULL, NULL)
|
||||
cardslotmatch, cardslotattach, NULL, NULL);
|
||||
|
||||
STATIC int
|
||||
cardslotmatch(parent, cf, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_cardbus.c,v 1.8 2002/09/30 20:52:27 thorpej Exp $ */
|
||||
/* $NetBSD: com_cardbus.c,v 1.9 2002/10/02 16:33:41 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 Johan Danielsson
|
||||
|
@ -40,7 +40,7 @@
|
|||
updated below. */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_cardbus.c,v 1.8 2002/09/30 20:52:27 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_cardbus.c,v 1.9 2002/10/02 16:33:41 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -80,7 +80,7 @@ static int com_cardbus_enable (struct com_softc*);
|
|||
static void com_cardbus_disable (struct com_softc*);
|
||||
|
||||
CFATTACH_DECL(com_cardbus, sizeof(struct com_cardbus_softc),
|
||||
com_cardbus_match, com_cardbus_attach, com_cardbus_detach, com_activate)
|
||||
com_cardbus_match, com_cardbus_attach, com_cardbus_detach, com_activate);
|
||||
|
||||
static struct csdev {
|
||||
int vendor;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ehci_cardbus.c,v 1.5 2002/09/30 20:52:27 thorpej Exp $ */
|
||||
/* $NetBSD: ehci_cardbus.c,v 1.6 2002/10/02 16:33:41 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ehci_cardbus.c,v 1.5 2002/09/30 20:52:27 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ehci_cardbus.c,v 1.6 2002/10/02 16:33:41 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -85,7 +85,7 @@ struct ehci_cardbus_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(ehci_cardbus, sizeof(struct ehci_cardbus_softc),
|
||||
ehci_cardbus_match, ehci_cardbus_attach, ehci_cardbus_detach, ehci_activate)
|
||||
ehci_cardbus_match, ehci_cardbus_attach, ehci_cardbus_detach, ehci_activate);
|
||||
|
||||
#define CARDBUS_INTERFACE_EHCI PCI_INTERFACE_EHCI
|
||||
#define CARDBUS_CBMEM PCI_CBMEM
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fwohci_cardbus.c,v 1.7 2002/09/30 20:52:28 thorpej Exp $ */
|
||||
/* $NetBSD: fwohci_cardbus.c,v 1.8 2002/10/02 16:33:41 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: fwohci_cardbus.c,v 1.7 2002/09/30 20:52:28 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: fwohci_cardbus.c,v 1.8 2002/10/02 16:33:41 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -72,7 +72,7 @@ static int fwohci_cardbus_detach(struct device *, int);
|
|||
|
||||
CFATTACH_DECL(fwohci_cardbus, sizeof(struct fwohci_cardbus_softc),
|
||||
fwohci_cardbus_match, fwohci_cardbus_attach,
|
||||
fwohci_cardbus_detach, fwohci_activate)
|
||||
fwohci_cardbus_detach, fwohci_activate);
|
||||
|
||||
#define CARDBUS_OHCI_MAP_REGISTER PCI_OHCI_MAP_REGISTER
|
||||
#define CARDBUS_INTERFACE_OHCI PCI_INTERFACE_OHCI
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ex_cardbus.c,v 1.26 2002/09/30 20:52:28 thorpej Exp $ */
|
||||
/* $NetBSD: if_ex_cardbus.c,v 1.27 2002/10/02 16:33:42 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* CardBus specific routines for 3Com 3C575-family CardBus ethernet adapter
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ex_cardbus.c,v 1.26 2002/09/30 20:52:28 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ex_cardbus.c,v 1.27 2002/10/02 16:33:42 thorpej Exp $");
|
||||
|
||||
/* #define EX_DEBUG 4 */ /* define to report information for debugging */
|
||||
|
||||
|
@ -122,7 +122,7 @@ struct ex_cardbus_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(ex_cardbus, sizeof(struct ex_cardbus_softc),
|
||||
ex_cardbus_match, ex_cardbus_attach, ex_cardbus_detach, ex_activate)
|
||||
ex_cardbus_match, ex_cardbus_attach, ex_cardbus_detach, ex_activate);
|
||||
|
||||
const struct ex_cardbus_product {
|
||||
u_int32_t ecp_prodid; /* CardBus product ID */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_fxp_cardbus.c,v 1.16 2002/09/30 20:52:28 thorpej Exp $ */
|
||||
/* $NetBSD: if_fxp_cardbus.c,v 1.17 2002/10/02 16:33:42 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_fxp_cardbus.c,v 1.16 2002/09/30 20:52:28 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_fxp_cardbus.c,v 1.17 2002/10/02 16:33:42 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "opt_ns.h"
|
||||
|
@ -114,7 +114,7 @@ struct fxp_cardbus_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(fxp_cardbus, sizeof(struct fxp_cardbus_softc),
|
||||
fxp_cardbus_match, fxp_cardbus_attach, fxp_cardbus_detach, fxp_activate)
|
||||
fxp_cardbus_match, fxp_cardbus_attach, fxp_cardbus_detach, fxp_activate);
|
||||
|
||||
#ifdef CBB_DEBUG
|
||||
#define DPRINTF(X) printf X
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_rtk_cardbus.c,v 1.10 2002/09/30 20:52:28 thorpej Exp $ */
|
||||
/* $NetBSD: if_rtk_cardbus.c,v 1.11 2002/10/02 16:33:42 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 Masanori Kanaoka
|
||||
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_rtk_cardbus.c,v 1.10 2002/09/30 20:52:28 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_rtk_cardbus.c,v 1.11 2002/10/02 16:33:42 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "opt_ns.h"
|
||||
|
@ -137,7 +137,7 @@ struct rtk_cardbus_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(rtk_cardbus, sizeof(struct rtk_cardbus_softc),
|
||||
rtk_cardbus_match, rtk_cardbus_attach, rtk_cardbus_detach, rtk_activate)
|
||||
rtk_cardbus_match, rtk_cardbus_attach, rtk_cardbus_detach, rtk_activate);
|
||||
|
||||
const struct rtk_type *rtk_cardbus_lookup
|
||||
__P((const struct cardbus_attach_args *));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_tlp_cardbus.c,v 1.36 2002/09/30 20:52:28 thorpej Exp $ */
|
||||
/* $NetBSD: if_tlp_cardbus.c,v 1.37 2002/10/02 16:33:43 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_tlp_cardbus.c,v 1.36 2002/09/30 20:52:28 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_tlp_cardbus.c,v 1.37 2002/10/02 16:33:43 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "opt_ns.h"
|
||||
|
@ -129,7 +129,7 @@ void tlp_cardbus_attach __P((struct device *, struct device *, void *));
|
|||
int tlp_cardbus_detach __P((struct device *, int));
|
||||
|
||||
CFATTACH_DECL(tlp_cardbus, sizeof(struct tulip_cardbus_softc),
|
||||
tlp_cardbus_match, tlp_cardbus_attach, tlp_cardbus_detach, tlp_activate)
|
||||
tlp_cardbus_match, tlp_cardbus_attach, tlp_cardbus_detach, tlp_activate);
|
||||
|
||||
const struct tulip_cardbus_product {
|
||||
u_int32_t tcp_vendor; /* PCI vendor ID */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ohci_cardbus.c,v 1.13 2002/09/30 20:52:29 thorpej Exp $ */
|
||||
/* $NetBSD: ohci_cardbus.c,v 1.14 2002/10/02 16:33:43 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -45,7 +45,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ohci_cardbus.c,v 1.13 2002/09/30 20:52:29 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ohci_cardbus.c,v 1.14 2002/10/02 16:33:43 thorpej Exp $");
|
||||
|
||||
#include "ehci.h"
|
||||
|
||||
|
@ -90,7 +90,7 @@ struct ohci_cardbus_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(ohci_cardbus, sizeof(struct ohci_cardbus_softc),
|
||||
ohci_cardbus_match, ohci_cardbus_attach, ohci_cardbus_detach, ohci_activate)
|
||||
ohci_cardbus_match, ohci_cardbus_attach, ohci_cardbus_detach, ohci_activate);
|
||||
|
||||
#define CARDBUS_INTERFACE_OHCI PCI_INTERFACE_OHCI
|
||||
#define CARDBUS_CBMEM PCI_CBMEM
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: rbus_ppb.c,v 1.7 2002/09/30 20:52:29 thorpej Exp $ */
|
||||
/* $NetBSD: rbus_ppb.c,v 1.8 2002/10/02 16:33:43 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: rbus_ppb.c,v 1.7 2002/09/30 20:52:29 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: rbus_ppb.c,v 1.8 2002/10/02 16:33:43 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -130,7 +130,7 @@ struct ppb_cardbus_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(rbus_ppb, sizeof(struct ppb_cardbus_softc),
|
||||
ppb_cardbus_match, ppb_cardbus_attach, ppb_cardbus_detach, ppb_activate)
|
||||
ppb_cardbus_match, ppb_cardbus_attach, ppb_cardbus_detach, ppb_activate);
|
||||
|
||||
#ifdef CBB_DEBUG
|
||||
int rbus_ppb_debug = 0; /* hack with kdb */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dzkbd.c,v 1.9 2002/09/30 20:53:39 thorpej Exp $ */
|
||||
/* $NetBSD: dzkbd.c,v 1.10 2002/10/02 16:33:44 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -49,7 +49,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: dzkbd.c,v 1.9 2002/09/30 20:53:39 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: dzkbd.c,v 1.10 2002/10/02 16:33:44 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -98,7 +98,7 @@ static int dzkbd_match __P((struct device *, struct cfdata *, void *));
|
|||
static void dzkbd_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(dzkbd, sizeof(struct dzkbd_softc),
|
||||
dzkbd_match, dzkbd_attach, NULL, NULL)
|
||||
dzkbd_match, dzkbd_attach, NULL, NULL);
|
||||
|
||||
static int dzkbd_enable __P((void *, int));
|
||||
static void dzkbd_set_leds __P((void *, int));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dzms.c,v 1.8 2002/09/30 20:53:39 thorpej Exp $ */
|
||||
/* $NetBSD: dzms.c,v 1.9 2002/10/02 16:33:44 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -49,7 +49,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: dzms.c,v 1.8 2002/09/30 20:53:39 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: dzms.c,v 1.9 2002/10/02 16:33:44 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -91,7 +91,7 @@ static void dzms_attach __P((struct device *, struct device *, void *));
|
|||
static int dzms_input __P((void *, int));
|
||||
|
||||
CFATTACH_DECL(dzms, sizeof(struct dzms_softc),
|
||||
dzms_match, dzms_attach, NULL, NULL)
|
||||
dzms_match, dzms_attach, NULL, NULL);
|
||||
|
||||
static int dzms_enable __P((void *));
|
||||
static int dzms_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cs4231_ebus.c,v 1.8 2002/09/30 20:54:25 thorpej Exp $ */
|
||||
/* $NetBSD: cs4231_ebus.c,v 1.9 2002/10/02 16:33:44 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002 Valeriy E. Ushakov
|
||||
|
@ -67,7 +67,7 @@ void cs4231_ebus_attach(struct device *, struct device *, void *);
|
|||
int cs4231_ebus_match(struct device *, struct cfdata *, void *);
|
||||
|
||||
CFATTACH_DECL(audiocs_ebus, sizeof(struct cs4231_ebus_softc),
|
||||
cs4231_ebus_match, cs4231_ebus_attach, NULL, NULL)
|
||||
cs4231_ebus_match, cs4231_ebus_attach, NULL, NULL);
|
||||
|
||||
/* audio_hw_if methods specific to ebus dma */
|
||||
static int cs4231_ebus_trigger_output(void *, void *, void *, int,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ahb.c,v 1.37 2002/09/30 21:04:24 thorpej Exp $ */
|
||||
/* $NetBSD: ahb.c,v 1.38 2002/10/02 16:33:45 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -53,7 +53,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahb.c,v 1.37 2002/09/30 21:04:24 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahb.c,v 1.38 2002/10/02 16:33:45 thorpej Exp $");
|
||||
|
||||
#include "opt_ddb.h"
|
||||
|
||||
|
@ -153,7 +153,7 @@ int ahbmatch __P((struct device *, struct cfdata *, void *));
|
|||
void ahbattach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ahb, sizeof(struct ahb_softc),
|
||||
ahbmatch, ahbattach, NULL, NULL)
|
||||
ahbmatch, ahbattach, NULL, NULL);
|
||||
|
||||
#define AHB_ABORT_TIMEOUT 2000 /* time to wait for abort (mSec) */
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ahc_eisa.c,v 1.23 2002/09/30 21:04:24 thorpej Exp $ */
|
||||
/* $NetBSD: ahc_eisa.c,v 1.24 2002/10/02 16:33:45 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Product specific probe and attach routines for:
|
||||
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahc_eisa.c,v 1.23 2002/09/30 21:04:24 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahc_eisa.c,v 1.24 2002/10/02 16:33:45 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -61,7 +61,7 @@ void ahc_eisa_attach __P((struct device *, struct device *, void *));
|
|||
|
||||
|
||||
CFATTACH_DECL(ahc_eisa, sizeof(struct ahc_softc),
|
||||
ahc_eisa_match, ahc_eisa_attach, NULL, NULL)
|
||||
ahc_eisa_match, ahc_eisa_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Check the slots looking for a board we recognise
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bha_eisa.c,v 1.22 2002/09/30 21:04:24 thorpej Exp $ */
|
||||
/* $NetBSD: bha_eisa.c,v 1.23 2002/10/02 16:33:46 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: bha_eisa.c,v 1.22 2002/09/30 21:04:24 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: bha_eisa.c,v 1.23 2002/10/02 16:33:46 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -66,7 +66,7 @@ int bha_eisa_match __P((struct device *, struct cfdata *, void *));
|
|||
void bha_eisa_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(bha_eisa, sizeof(struct bha_softc),
|
||||
bha_eisa_match, bha_eisa_attach, NULL, NULL)
|
||||
bha_eisa_match, bha_eisa_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
bha_eisa_address(iot, ioh, portp)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cac_eisa.c,v 1.7 2002/09/30 21:04:24 thorpej Exp $ */
|
||||
/* $NetBSD: cac_eisa.c,v 1.8 2002/10/02 16:33:46 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -68,7 +68,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: cac_eisa.c,v 1.7 2002/09/30 21:04:24 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cac_eisa.c,v 1.8 2002/10/02 16:33:46 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -97,7 +97,7 @@ int cac_eisa_l0_intr_pending(struct cac_softc *);
|
|||
void cac_eisa_l0_submit(struct cac_softc *, struct cac_ccb *);
|
||||
|
||||
CFATTACH_DECL(cac_eisa, sizeof(struct cac_softc),
|
||||
cac_eisa_match, cac_eisa_attach, NULL, NULL)
|
||||
cac_eisa_match, cac_eisa_attach, NULL, NULL);
|
||||
|
||||
static const struct cac_linkage cac_eisa_l0 = {
|
||||
cac_eisa_l0_completed,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: depca_eisa.c,v 1.4 2002/09/30 21:04:25 thorpej Exp $ */
|
||||
/* $NetBSD: depca_eisa.c,v 1.5 2002/10/02 16:33:46 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: depca_eisa.c,v 1.4 2002/09/30 21:04:25 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: depca_eisa.c,v 1.5 2002/10/02 16:33:46 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "bpfilter.h"
|
||||
|
@ -88,7 +88,7 @@ struct depca_eisa_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(depca_eisa, sizeof(struct depca_eisa_softc),
|
||||
depca_eisa_match, depca_eisa_attach, NULL, NULL)
|
||||
depca_eisa_match, depca_eisa_attach, NULL, NULL);
|
||||
|
||||
void *depca_eisa_intr_establish(struct depca_softc *, struct lance_softc *);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dpt_eisa.c,v 1.8 2002/09/30 21:04:25 thorpej Exp $ */
|
||||
/* $NetBSD: dpt_eisa.c,v 1.9 2002/10/02 16:33:46 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999, 2000, 2001 Andrew Doran <ad@netbsd.org>
|
||||
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: dpt_eisa.c,v 1.8 2002/09/30 21:04:25 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: dpt_eisa.c,v 1.9 2002/10/02 16:33:46 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -60,7 +60,7 @@ static int dpt_eisa_irq(bus_space_tag_t, bus_space_handle_t, int *);
|
|||
static int dpt_eisa_match(struct device *, struct cfdata *, void *);
|
||||
|
||||
CFATTACH_DECL(dpt_eisa, sizeof(struct dpt_softc),
|
||||
dpt_eisa_match, dpt_eisa_attach, NULL, NULL)
|
||||
dpt_eisa_match, dpt_eisa_attach, NULL, NULL);
|
||||
|
||||
static const char * const dpt_eisa_boards[] = {
|
||||
"DPT2402",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: eisa.c,v 1.29 2002/09/30 21:04:25 thorpej Exp $ */
|
||||
/* $NetBSD: eisa.c,v 1.30 2002/10/02 16:33:47 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Christopher G. Demetriou
|
||||
|
@ -39,7 +39,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: eisa.c,v 1.29 2002/09/30 21:04:25 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: eisa.c,v 1.30 2002/10/02 16:33:47 thorpej Exp $");
|
||||
|
||||
#include "opt_eisaverbose.h"
|
||||
|
||||
|
@ -57,7 +57,7 @@ int eisamatch(struct device *, struct cfdata *, void *);
|
|||
void eisaattach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(eisa, sizeof(struct device),
|
||||
eisamatch, eisaattach, NULL, NULL)
|
||||
eisamatch, eisaattach, NULL, NULL);
|
||||
|
||||
int eisasubmatch(struct device *, struct cfdata *, void *);
|
||||
int eisaprint(void *, const char *);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ep_eisa.c,v 1.26 2002/09/30 21:04:25 thorpej Exp $ */
|
||||
/* $NetBSD: if_ep_eisa.c,v 1.27 2002/10/02 16:33:47 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -71,7 +71,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ep_eisa.c,v 1.26 2002/09/30 21:04:25 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ep_eisa.c,v 1.27 2002/10/02 16:33:47 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "opt_ns.h"
|
||||
|
@ -127,7 +127,7 @@ int ep_eisa_match __P((struct device *, struct cfdata *, void *));
|
|||
void ep_eisa_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ep_eisa, sizeof(struct ep_softc),
|
||||
ep_eisa_match, ep_eisa_attach, NULL, NULL)
|
||||
ep_eisa_match, ep_eisa_attach, NULL, NULL);
|
||||
|
||||
/* XXX move these somewhere else */
|
||||
/* While attaching we need a few special EISA registers of the card,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_fea.c,v 1.27 2002/09/30 21:04:25 thorpej Exp $ */
|
||||
/* $NetBSD: if_fea.c,v 1.28 2002/10/02 16:33:47 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1995, 1996 Matt Thomas <matt@3am-software.com>
|
||||
|
@ -33,7 +33,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_fea.c,v 1.27 2002/09/30 21:04:25 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_fea.c,v 1.28 2002/10/02 16:33:47 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
|
||||
|
@ -529,5 +529,5 @@ pdq_eisa_attach(
|
|||
}
|
||||
|
||||
CFATTACH_DECL(fea, sizeof(pdq_softc_t),
|
||||
pdq_eisa_match, pdq_eisa_attach, NULL, NULL)
|
||||
pdq_eisa_match, pdq_eisa_attach, NULL, NULL);
|
||||
#endif
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_tlp_eisa.c,v 1.10 2002/09/30 21:04:26 thorpej Exp $ */
|
||||
/* $NetBSD: if_tlp_eisa.c,v 1.11 2002/10/02 16:33:47 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_tlp_eisa.c,v 1.10 2002/09/30 21:04:26 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_tlp_eisa.c,v 1.11 2002/10/02 16:33:47 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "opt_ns.h"
|
||||
|
@ -122,7 +122,7 @@ int tlp_eisa_match __P((struct device *, struct cfdata *, void *));
|
|||
void tlp_eisa_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(tlp_eisa, sizeof(struct tulip_eisa_softc),
|
||||
tlp_eisa_match, tlp_eisa_attach, NULL, NULL)
|
||||
tlp_eisa_match, tlp_eisa_attach, NULL, NULL);
|
||||
|
||||
const int tlp_eisa_irqs[] = { 5, 9, 10, 11 };
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mlx_eisa.c,v 1.10 2002/09/30 21:04:26 thorpej Exp $ */
|
||||
/* $NetBSD: mlx_eisa.c,v 1.11 2002/10/02 16:33:48 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: mlx_eisa.c,v 1.10 2002/09/30 21:04:26 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mlx_eisa.c,v 1.11 2002/10/02 16:33:48 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -74,7 +74,7 @@ static int mlx_v1_reset(struct mlx_softc *);
|
|||
#endif
|
||||
|
||||
CFATTACH_DECL(mlx_eisa, sizeof(struct mlx_softc),
|
||||
mlx_eisa_match, mlx_eisa_attach, NULL, NULL)
|
||||
mlx_eisa_match, mlx_eisa_attach, NULL, NULL);
|
||||
|
||||
struct mlx_eisa_prod {
|
||||
const char *mp_idstr;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: uha_eisa.c,v 1.20 2002/09/30 21:04:26 thorpej Exp $ */
|
||||
/* $NetBSD: uha_eisa.c,v 1.21 2002/10/02 16:33:48 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: uha_eisa.c,v 1.20 2002/09/30 21:04:26 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: uha_eisa.c,v 1.21 2002/10/02 16:33:48 thorpej Exp $");
|
||||
|
||||
#include "opt_ddb.h"
|
||||
|
||||
|
@ -68,7 +68,7 @@ int uha_eisa_match __P((struct device *, struct cfdata *, void *));
|
|||
void uha_eisa_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(uha_eisa, sizeof(struct uha_softc),
|
||||
uha_eisa_match, uha_eisa_attach, NULL, NULL)
|
||||
uha_eisa_match, uha_eisa_attach, NULL, NULL);
|
||||
|
||||
#ifndef DDB
|
||||
#define Debugger() panic("should call debugger here (uha_eisa.c)")
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bivideo.c,v 1.16 2002/09/30 21:09:34 thorpej Exp $ */
|
||||
/* $NetBSD: bivideo.c,v 1.17 2002/10/02 16:33:48 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999-2001
|
||||
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: bivideo.c,v 1.16 2002/09/30 21:09:34 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: bivideo.c,v 1.17 2002/10/02 16:33:48 thorpej Exp $");
|
||||
|
||||
#define FBDEBUG
|
||||
static const char _copyright[] __attribute__ ((unused)) =
|
||||
|
@ -123,7 +123,7 @@ void bivideo_set_contrast(struct bivideo_softc *, int);
|
|||
* static variables
|
||||
*/
|
||||
CFATTACH_DECL(bivideo, sizeof(struct bivideo_softc),
|
||||
bivideomatch, bivideoattach, NULL, NULL)
|
||||
bivideomatch, bivideoattach, NULL, NULL);
|
||||
|
||||
struct hpcfb_accessops bivideo_ha = {
|
||||
bivideo_ioctl, bivideo_mmap
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: btnmgr.c,v 1.9 2002/09/30 21:09:35 thorpej Exp $ */
|
||||
/* $NetBSD: btnmgr.c,v 1.10 2002/10/02 16:33:49 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999
|
||||
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: btnmgr.c,v 1.9 2002/09/30 21:09:35 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: btnmgr.c,v 1.10 2002/10/02 16:33:49 thorpej Exp $");
|
||||
|
||||
#define BTNMGRDEBUG
|
||||
|
||||
|
@ -90,7 +90,7 @@ static int btnmgr_hook(void *, int, long, void *);
|
|||
* global/static data
|
||||
*/
|
||||
CFATTACH_DECL(btnmgr, sizeof(struct btnmgr_softc),
|
||||
btnmgrmatch, btnmgrattach, NULL, NULL)
|
||||
btnmgrmatch, btnmgrattach, NULL, NULL);
|
||||
|
||||
#ifdef notyet
|
||||
dev_type_open(btnmgropen);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: button.c,v 1.8 2002/09/30 21:09:35 thorpej Exp $ */
|
||||
/* $NetBSD: button.c,v 1.9 2002/10/02 16:33:49 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999-2001
|
||||
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: button.c,v 1.8 2002/09/30 21:09:35 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: button.c,v 1.9 2002/10/02 16:33:49 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -68,7 +68,7 @@ static int button_intr(void *);
|
|||
static int button_state(void *, int, long, void *);
|
||||
|
||||
CFATTACH_DECL(button, sizeof(struct button_softc),
|
||||
button_match, button_attach, NULL, NULL)
|
||||
button_match, button_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
button_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: hpcfb.c,v 1.26 2002/10/02 10:43:06 reinoud Exp $ */
|
||||
/* $NetBSD: hpcfb.c,v 1.27 2002/10/02 16:33:49 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999
|
||||
|
@ -43,13 +43,13 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpcfb.c,v 1.26 2002/10/02 10:43:06 reinoud Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpcfb.c,v 1.27 2002/10/02 16:33:49 thorpej Exp $");
|
||||
|
||||
#define FBDEBUG
|
||||
static const char _copyright[] __attribute__ ((unused)) =
|
||||
"Copyright (c) 1999 Shin Takemura. All rights reserved.";
|
||||
static const char _rcsid[] __attribute__ ((unused)) =
|
||||
"$NetBSD: hpcfb.c,v 1.26 2002/10/02 10:43:06 reinoud Exp $";
|
||||
"$NetBSD: hpcfb.c,v 1.27 2002/10/02 16:33:49 thorpej Exp $";
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -236,7 +236,7 @@ struct wsdisplay_emulops hpcfb_emulops = {
|
|||
* static variables
|
||||
*/
|
||||
CFATTACH_DECL(hpcfb, sizeof(struct hpcfb_softc),
|
||||
hpcfbmatch, hpcfbattach, NULL, NULL)
|
||||
hpcfbmatch, hpcfbattach, NULL, NULL);
|
||||
|
||||
struct wsscreen_descr hpcfb_stdscreen = {
|
||||
"std",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: hpcin.c,v 1.7 2002/09/30 21:09:35 thorpej Exp $ */
|
||||
/* $NetBSD: hpcin.c,v 1.8 2002/10/02 16:33:49 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpcin.c,v 1.7 2002/09/30 21:09:35 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpcin.c,v 1.8 2002/10/02 16:33:49 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -73,7 +73,7 @@ struct hpcin_softc {
|
|||
#define sc_connect sc_hma.hma_connect
|
||||
|
||||
CFATTACH_DECL(hpcin, sizeof(struct hpcin_softc),
|
||||
hpcin_match, hpcin_attach, NULL, NULL)
|
||||
hpcin_match, hpcin_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
hpcin_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: hpcioman.c,v 1.8 2002/09/30 21:09:35 thorpej Exp $ */
|
||||
/* $NetBSD: hpcioman.c,v 1.9 2002/10/02 16:33:50 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999-2001 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpcioman.c,v 1.8 2002/09/30 21:09:35 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpcioman.c,v 1.9 2002/10/02 16:33:50 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -63,7 +63,7 @@ struct hpcioman_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(hpcioman, sizeof(struct hpcioman_softc),
|
||||
hpcioman_match, hpcioman_attach, NULL, NULL)
|
||||
hpcioman_match, hpcioman_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
hpcioman_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: hpckbd.c,v 1.9 2002/09/30 21:09:35 thorpej Exp $ */
|
||||
/* $NetBSD: hpckbd.c,v 1.10 2002/10/02 16:33:50 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999-2001 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpckbd.c,v 1.9 2002/09/30 21:09:35 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpckbd.c,v 1.10 2002/10/02 16:33:50 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -113,7 +113,7 @@ int __hpckbd_input(void *, int, int);
|
|||
void __hpckbd_input_hook(void*);
|
||||
|
||||
CFATTACH_DECL(hpckbd, sizeof(struct hpckbd_softc),
|
||||
hpckbd_match, hpckbd_attach, NULL, NULL)
|
||||
hpckbd_match, hpckbd_attach, NULL, NULL);
|
||||
|
||||
/* wskbd accessopts */
|
||||
int hpckbd_enable(void *, int);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: hpcout.c,v 1.6 2002/09/30 21:09:35 thorpej Exp $ */
|
||||
/* $NetBSD: hpcout.c,v 1.7 2002/10/02 16:33:50 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpcout.c,v 1.6 2002/09/30 21:09:35 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: hpcout.c,v 1.7 2002/10/02 16:33:50 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -70,7 +70,7 @@ struct hpcout_softc {
|
|||
#define sc_off sc_hma.hma_off
|
||||
|
||||
CFATTACH_DECL(hpcout, sizeof(struct hpcout_softc),
|
||||
hpcout_match, hpcout_attach, NULL, NULL)
|
||||
hpcout_match, hpcout_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
hpcout_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pwctl.c,v 1.10 2002/09/30 21:09:36 thorpej Exp $ */
|
||||
/* $NetBSD: pwctl.c,v 1.11 2002/10/02 16:33:50 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999-2001
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: pwctl.c,v 1.10 2002/09/30 21:09:36 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pwctl.c,v 1.11 2002/10/02 16:33:50 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -86,7 +86,7 @@ static int pwctl_ghook(void *, int, long, void *);
|
|||
int pwctl_hardpower(void *, int, long, void *);
|
||||
|
||||
CFATTACH_DECL(pwctl, sizeof(struct pwctl_softc),
|
||||
pwctl_match, pwctl_attach, NULL, NULL)
|
||||
pwctl_match, pwctl_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
pwctl_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dpti.c,v 1.7 2002/09/30 21:11:45 thorpej Exp $ */
|
||||
/* $NetBSD: dpti.c,v 1.8 2002/10/02 16:33:51 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -64,7 +64,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: dpti.c,v 1.7 2002/09/30 21:11:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: dpti.c,v 1.8 2002/10/02 16:33:51 thorpej Exp $");
|
||||
|
||||
#include "opt_i2o.h"
|
||||
|
||||
|
@ -153,7 +153,7 @@ const struct cdevsw dpti_cdevsw = {
|
|||
extern struct cfdriver dpti_cd;
|
||||
|
||||
CFATTACH_DECL(dpti, sizeof(struct dpti_softc),
|
||||
dpti_match, dpti_attach, NULL, NULL)
|
||||
dpti_match, dpti_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
dpti_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: iopl.c,v 1.10 2002/09/30 21:11:45 thorpej Exp $ */
|
||||
/* $NetBSD: iopl.c,v 1.11 2002/10/02 16:33:51 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -46,7 +46,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: iopl.c,v 1.10 2002/09/30 21:11:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: iopl.c,v 1.11 2002/10/02 16:33:51 thorpej Exp $");
|
||||
|
||||
#include "opt_i2o.h"
|
||||
#include "opt_inet.h"
|
||||
|
@ -131,7 +131,7 @@ static void iopl_start(struct ifnet *);
|
|||
static void iopl_stop(struct ifnet *, int);
|
||||
|
||||
CFATTACH_DECL(iopl, sizeof(struct iopl_softc),
|
||||
iopl_match, iopl_attach, NULL, NULL)
|
||||
iopl_match, iopl_attach, NULL, NULL);
|
||||
|
||||
#ifdef I2OVERBOSE
|
||||
static const char * const iopl_errors[] = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: iopsp.c,v 1.15 2002/09/30 21:11:46 thorpej Exp $ */
|
||||
/* $NetBSD: iopsp.c,v 1.16 2002/10/02 16:33:52 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -42,7 +42,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: iopsp.c,v 1.15 2002/09/30 21:11:46 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: iopsp.c,v 1.16 2002/10/02 16:33:52 thorpej Exp $");
|
||||
|
||||
#include "opt_i2o.h"
|
||||
|
||||
|
@ -84,7 +84,7 @@ static void iopsp_scsipi_request(struct scsipi_channel *,
|
|||
scsipi_adapter_req_t, void *);
|
||||
|
||||
CFATTACH_DECL(iopsp, sizeof(struct iopsp_softc),
|
||||
iopsp_match, iopsp_attach, NULL, NULL)
|
||||
iopsp_match, iopsp_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Match a supported device.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ld_iop.c,v 1.12 2002/09/30 21:11:46 thorpej Exp $ */
|
||||
/* $NetBSD: ld_iop.c,v 1.13 2002/10/02 16:33:53 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_iop.c,v 1.12 2002/09/30 21:11:46 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_iop.c,v 1.13 2002/10/02 16:33:53 thorpej Exp $");
|
||||
|
||||
#include "opt_i2o.h"
|
||||
#include "rnd.h"
|
||||
|
@ -93,7 +93,7 @@ static int ld_iop_start(struct ld_softc *, struct buf *);
|
|||
static void ld_iop_unconfig(struct ld_iop_softc *, int);
|
||||
|
||||
CFATTACH_DECL(ld_iop, sizeof(struct ld_iop_softc),
|
||||
ld_iop_match, ld_iop_attach, ld_iop_detach, NULL)
|
||||
ld_iop_match, ld_iop_attach, ld_iop_detach, NULL);
|
||||
|
||||
#ifdef I2OVERBOSE
|
||||
static const char * const ld_iop_errors[] = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_cpcbus.c,v 1.3 2002/09/30 21:17:57 thorpej Exp $ */
|
||||
/* $NetBSD: com_cpcbus.c,v 1.4 2002/10/02 16:33:31 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
|
@ -58,7 +58,7 @@ static int com_cpc_match(struct device *, struct cfdata *, void *);
|
|||
static void com_cpc_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(com_cpcbus, sizeof(struct com_cpc_softc),
|
||||
com_cpc_match, com_cpc_attach, NULL, NULL)
|
||||
com_cpc_match, com_cpc_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
com_cpc_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_upc.c,v 1.4 2002/09/30 21:17:57 thorpej Exp $ */
|
||||
/* $NetBSD: com_upc.c,v 1.5 2002/10/02 16:33:32 thorpej Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
* All rights reserved.
|
||||
|
@ -28,7 +28,7 @@
|
|||
/* This file is part of NetBSD/arm26 -- a port of NetBSD to ARM2/3 machines. */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_upc.c,v 1.4 2002/09/30 21:17:57 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_upc.c,v 1.5 2002/10/02 16:33:32 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/device.h>
|
||||
|
@ -45,7 +45,7 @@ static int com_upc_match(struct device *, struct cfdata *, void *);
|
|||
static void com_upc_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(com_upc, sizeof(struct com_softc),
|
||||
com_upc_match, com_upc_attach, NULL, NULL)
|
||||
com_upc_match, com_upc_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
com_upc_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: depca.c,v 1.7 2002/09/30 21:17:57 thorpej Exp $ */
|
||||
/* $NetBSD: depca.c,v 1.8 2002/10/02 16:33:32 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -76,7 +76,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: depca.c,v 1.7 2002/09/30 21:17:57 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: depca.c,v 1.8 2002/10/02 16:33:32 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -113,7 +113,7 @@ int le_depca_match(struct device *, struct cfdata *, void *);
|
|||
void le_depca_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(le_depca, sizeof(struct le_depca_softc),
|
||||
le_depca_match, le_depca_attach, NULL, NULL)
|
||||
le_depca_match, le_depca_attach, NULL, NULL);
|
||||
|
||||
void depca_copytobuf(struct lance_softc *, void *, int, int);
|
||||
void depca_copyfrombuf(struct lance_softc *, void *, int, int);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: icpsp.c,v 1.5 2002/09/30 21:17:57 thorpej Exp $ */
|
||||
/* $NetBSD: icpsp.c,v 1.6 2002/10/02 16:33:32 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: icpsp.c,v 1.5 2002/09/30 21:17:57 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: icpsp.c,v 1.6 2002/10/02 16:33:32 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -79,7 +79,7 @@ void icpsp_scsipi_request(struct scsipi_channel *, scsipi_adapter_req_t,
|
|||
void *);
|
||||
|
||||
CFATTACH_DECL(icpsp, sizeof(struct icpsp_softc),
|
||||
icpsp_match, icpsp_attach, NULL, NULL)
|
||||
icpsp_match, icpsp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
icpsp_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: iic_cpcbus.c,v 1.4 2002/09/30 21:17:57 thorpej Exp $ */
|
||||
/* $NetBSD: iic_cpcbus.c,v 1.5 2002/10/02 16:33:33 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
|
@ -55,7 +55,7 @@ static int iic_cpcbus_match(struct device *, struct cfdata *, void *);
|
|||
static void iic_cpcbus_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(iic_cpcbus, sizeof(struct iic_cpcbus_softc),
|
||||
iic_cpcbus_match, iic_cpcbus_attach, NULL, NULL)
|
||||
iic_cpcbus_match, iic_cpcbus_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
iic_cpcbus_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ld_aac.c,v 1.4 2002/09/30 21:17:57 thorpej Exp $ */
|
||||
/* $NetBSD: ld_aac.c,v 1.5 2002/10/02 16:33:33 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_aac.c,v 1.4 2002/09/30 21:17:57 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_aac.c,v 1.5 2002/10/02 16:33:33 thorpej Exp $");
|
||||
|
||||
#include "rnd.h"
|
||||
|
||||
|
@ -76,7 +76,7 @@ static int ld_aac_match(struct device *, struct cfdata *, void *);
|
|||
static int ld_aac_start(struct ld_softc *, struct buf *);
|
||||
|
||||
CFATTACH_DECL(ld_aac, sizeof(struct ld_aac_softc),
|
||||
ld_aac_match, ld_aac_attach, NULL, NULL)
|
||||
ld_aac_match, ld_aac_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
ld_aac_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ld_cac.c,v 1.7 2002/09/30 21:17:58 thorpej Exp $ */
|
||||
/* $NetBSD: ld_cac.c,v 1.8 2002/10/02 16:33:33 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_cac.c,v 1.7 2002/09/30 21:17:58 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_cac.c,v 1.8 2002/10/02 16:33:33 thorpej Exp $");
|
||||
|
||||
#include "rnd.h"
|
||||
|
||||
|
@ -80,7 +80,7 @@ int ld_cac_start(struct ld_softc *, struct buf *);
|
|||
static const struct timeval ld_cac_serrintvl = { 60, 0 };
|
||||
|
||||
CFATTACH_DECL(ld_cac, sizeof(struct ld_cac_softc),
|
||||
ld_cac_match, ld_cac_attach, NULL, NULL)
|
||||
ld_cac_match, ld_cac_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
ld_cac_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ld_icp.c,v 1.4 2002/09/30 21:17:58 thorpej Exp $ */
|
||||
/* $NetBSD: ld_icp.c,v 1.5 2002/10/02 16:33:33 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_icp.c,v 1.4 2002/09/30 21:17:58 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_icp.c,v 1.5 2002/10/02 16:33:33 thorpej Exp $");
|
||||
|
||||
#include "rnd.h"
|
||||
|
||||
|
@ -81,7 +81,7 @@ int ld_icp_match(struct device *, struct cfdata *, void *);
|
|||
int ld_icp_start(struct ld_softc *, struct buf *);
|
||||
|
||||
CFATTACH_DECL(ld_icp, sizeof(struct ld_icp_softc),
|
||||
ld_icp_match, ld_icp_attach, NULL, NULL)
|
||||
ld_icp_match, ld_icp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
ld_icp_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ld_mlx.c,v 1.6 2002/09/30 21:17:58 thorpej Exp $ */
|
||||
/* $NetBSD: ld_mlx.c,v 1.7 2002/10/02 16:33:34 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_mlx.c,v 1.6 2002/09/30 21:17:58 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ld_mlx.c,v 1.7 2002/10/02 16:33:34 thorpej Exp $");
|
||||
|
||||
#include "rnd.h"
|
||||
|
||||
|
@ -81,7 +81,7 @@ static int ld_mlx_match(struct device *, struct cfdata *, void *);
|
|||
static int ld_mlx_start(struct ld_softc *, struct buf *);
|
||||
|
||||
CFATTACH_DECL(ld_mlx, sizeof(struct ld_mlx_softc),
|
||||
ld_mlx_match, ld_mlx_attach, ld_mlx_detach, NULL)
|
||||
ld_mlx_match, ld_mlx_attach, ld_mlx_detach, NULL);
|
||||
|
||||
static int
|
||||
ld_mlx_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: lpt_upc.c,v 1.4 2002/09/30 21:17:58 thorpej Exp $ */
|
||||
/* $NetBSD: lpt_upc.c,v 1.5 2002/10/02 16:33:34 thorpej Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
* All rights reserved.
|
||||
|
@ -28,7 +28,7 @@
|
|||
/* This file is part of NetBSD/arm26 -- a port of NetBSD to ARM2/3 machines. */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_upc.c,v 1.4 2002/09/30 21:17:58 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_upc.c,v 1.5 2002/10/02 16:33:34 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/device.h>
|
||||
|
@ -44,7 +44,7 @@ static int lpt_upc_match(struct device *, struct cfdata *, void *);
|
|||
static void lpt_upc_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(lpt_upc, sizeof(struct lpt_softc),
|
||||
lpt_upc_match, lpt_upc_attach, NULL, NULL)
|
||||
lpt_upc_match, lpt_upc_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
lpt_upc_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: timer_cpcbus.c,v 1.4 2002/09/30 21:17:58 thorpej Exp $ */
|
||||
/* $NetBSD: timer_cpcbus.c,v 1.5 2002/10/02 16:33:34 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||
|
@ -52,7 +52,7 @@ static int cpctim_match(struct device *, struct cfdata *, void *);
|
|||
static void cpctim_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(cpctim, sizeof(struct cpctim_softc),
|
||||
cpctim_match, cpctim_attach, NULL, NULL)
|
||||
cpctim_match, cpctim_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
cpctim_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: wdc_upc.c,v 1.5 2002/09/30 21:17:58 thorpej Exp $ */
|
||||
/* $NetBSD: wdc_upc.c,v 1.6 2002/10/02 16:33:34 thorpej Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
* All rights reserved.
|
||||
|
@ -28,7 +28,7 @@
|
|||
/* This file is part of NetBSD/arm26 -- a port of NetBSD to ARM2/3 machines. */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: wdc_upc.c,v 1.5 2002/09/30 21:17:58 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: wdc_upc.c,v 1.6 2002/10/02 16:33:34 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/device.h>
|
||||
|
@ -53,7 +53,7 @@ struct wdc_upc_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(wdc_upc, sizeof(struct wdc_upc_softc),
|
||||
wdc_upc_match, wdc_upc_attach, NULL, NULL)
|
||||
wdc_upc_match, wdc_upc_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
wdc_upc_match(struct device *parent, struct cfdata *cf, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: z8530tty.c,v 1.83 2002/09/30 21:17:58 thorpej Exp $ */
|
||||
/* $NetBSD: z8530tty.c,v 1.84 2002/10/02 16:33:34 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999
|
||||
|
@ -99,7 +99,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: z8530tty.c,v 1.83 2002/09/30 21:17:58 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: z8530tty.c,v 1.84 2002/10/02 16:33:34 thorpej Exp $");
|
||||
|
||||
#include "opt_kgdb.h"
|
||||
|
||||
|
@ -216,7 +216,7 @@ static int zstty_match(struct device *, struct cfdata *, void *);
|
|||
static void zstty_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(zstty, sizeof(struct zstty_softc),
|
||||
zstty_match, zstty_attach, NULL, NULL)
|
||||
zstty_match, zstty_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver zstty_cd;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fwnode.c,v 1.16 2002/09/30 21:21:07 thorpej Exp $ */
|
||||
/* $NetBSD: fwnode.c,v 1.17 2002/10/02 16:33:54 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001,2002 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: fwnode.c,v 1.16 2002/09/30 21:21:07 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: fwnode.c,v 1.17 2002/10/02 16:33:54 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -77,7 +77,7 @@ int fwnodedebug = 1;
|
|||
#endif
|
||||
|
||||
CFATTACH_DECL(fwnode, sizeof(struct fwnode_softc),
|
||||
fwnode_match, fwnode_attach, fwnode_detach, NULL)
|
||||
fwnode_match, fwnode_attach, fwnode_detach, NULL);
|
||||
|
||||
int
|
||||
fwnode_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fwscsi.c,v 1.8 2002/09/30 21:21:07 thorpej Exp $ */
|
||||
/* $NetBSD: fwscsi.c,v 1.9 2002/10/02 16:33:55 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: fwscsi.c,v 1.8 2002/09/30 21:21:07 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: fwscsi.c,v 1.9 2002/10/02 16:33:55 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -91,7 +91,7 @@ struct fwscsi_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(fwscsi, sizeof(struct fwscsi_softc),
|
||||
fwscsi_match, fwscsi_attach, fwscsi_detach, NULL)
|
||||
fwscsi_match, fwscsi_attach, fwscsi_detach, NULL);
|
||||
|
||||
static int
|
||||
fwscsi_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_fw.c,v 1.18 2002/09/30 21:21:07 thorpej Exp $ */
|
||||
/* $NetBSD: if_fw.c,v 1.19 2002/10/02 16:33:55 thorpej Exp $ */
|
||||
|
||||
/* XXX ALTQ XXX */
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_fw.c,v 1.18 2002/09/30 21:21:07 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_fw.c,v 1.19 2002/10/02 16:33:55 thorpej Exp $");
|
||||
|
||||
#include "opt_inet.h"
|
||||
#include "bpfilter.h"
|
||||
|
@ -103,7 +103,7 @@ int fw_init(struct ifnet *);
|
|||
void fw_stop(struct ifnet *, int);
|
||||
|
||||
CFATTACH_DECL(fw, sizeof(struct fw_softc),
|
||||
fw_match, fw_attach, fw_detach, fw_activate)
|
||||
fw_match, fw_attach, fw_detach, fw_activate);
|
||||
|
||||
int
|
||||
fw_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cir.c,v 1.6 2002/09/30 21:22:22 thorpej Exp $ */
|
||||
/* $NetBSD: cir.c,v 1.7 2002/10/02 16:33:56 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -68,7 +68,7 @@ int cir_activate(struct device *self, enum devact act);
|
|||
int cir_detach(struct device *self, int flags);
|
||||
|
||||
CFATTACH_DECL(cir, sizeof(struct cir_softc),
|
||||
cir_match, cir_attach, cir_detach, cir_activate)
|
||||
cir_match, cir_attach, cir_detach, cir_activate);
|
||||
|
||||
extern struct cfdriver cir_cd;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: aha_isapnp.c,v 1.6 2002/09/30 21:31:52 thorpej Exp $ */
|
||||
/* $NetBSD: aha_isapnp.c,v 1.7 2002/10/02 16:33:56 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: aha_isapnp.c,v 1.6 2002/09/30 21:31:52 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: aha_isapnp.c,v 1.7 2002/10/02 16:33:56 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -64,7 +64,7 @@ int aha_isapnp_probe __P((struct device *, struct cfdata *, void *));
|
|||
void aha_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(aha_isapnp, sizeof(struct aha_softc),
|
||||
aha_isapnp_probe, aha_isapnp_attach, NULL, NULL)
|
||||
aha_isapnp_probe, aha_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
aha_isapnp_probe(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: aic_isapnp.c,v 1.8 2002/09/30 21:31:52 thorpej Exp $ */
|
||||
/* $NetBSD: aic_isapnp.c,v 1.9 2002/10/02 16:33:57 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: aic_isapnp.c,v 1.8 2002/09/30 21:31:52 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: aic_isapnp.c,v 1.9 2002/10/02 16:33:57 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -68,7 +68,7 @@ int aic_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void aic_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(aic_isapnp, sizeof(struct aic_isapnp_softc),
|
||||
aic_isapnp_match, aic_isapnp_attach, NULL, NULL)
|
||||
aic_isapnp_match, aic_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
aic_isapnp_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_isapnp.c,v 1.19 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: com_isapnp.c,v 1.20 2002/10/02 16:33:57 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_isapnp.c,v 1.19 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_isapnp.c,v 1.20 2002/10/02 16:33:57 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -70,7 +70,7 @@ int com_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void com_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(com_isapnp, sizeof(struct com_isapnp_softc),
|
||||
com_isapnp_match, com_isapnp_attach, NULL, NULL)
|
||||
com_isapnp_match, com_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
com_isapnp_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ess_isapnp.c,v 1.9 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: ess_isapnp.c,v 1.10 2002/10/02 16:33:58 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991-1993 Regents of the University of California.
|
||||
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ess_isapnp.c,v 1.9 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ess_isapnp.c,v 1.10 2002/10/02 16:33:58 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -65,7 +65,7 @@ int ess_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void ess_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ess_isapnp, sizeof(struct ess_softc),
|
||||
ess_isapnp_match, ess_isapnp_attach, NULL, NULL)
|
||||
ess_isapnp_match, ess_isapnp_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Probe / attach routines.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: gus_isapnp.c,v 1.19 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: gus_isapnp.c,v 1.20 2002/10/02 16:33:58 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997, 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: gus_isapnp.c,v 1.19 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: gus_isapnp.c,v 1.20 2002/10/02 16:33:58 thorpej Exp $");
|
||||
|
||||
#include "guspnp.h"
|
||||
#if NGUSPNP > 0
|
||||
|
@ -117,7 +117,7 @@ static struct audio_hw_if guspnp_hw_if = {
|
|||
|
||||
|
||||
CFATTACH_DECL(guspnp, sizeof(struct iw_softc),
|
||||
gus_isapnp_match, gus_isapnp_attach, NULL, NULL)
|
||||
gus_isapnp_match, gus_isapnp_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver guspnp_cd;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: i82365_isapnp.c,v 1.14 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: i82365_isapnp.c,v 1.15 2002/10/02 16:33:58 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 Bill Sommerfeld. All rights reserved.
|
||||
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: i82365_isapnp.c,v 1.14 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: i82365_isapnp.c,v 1.15 2002/10/02 16:33:58 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -69,7 +69,7 @@ int pcic_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void pcic_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(pcic_isapnp, sizeof(struct pcic_isa_softc),
|
||||
pcic_isapnp_match, pcic_isapnp_attach, NULL, NULL)
|
||||
pcic_isapnp_match, pcic_isapnp_attach, NULL, NULL);
|
||||
|
||||
static struct pcmcia_chip_functions pcic_isa_functions = {
|
||||
pcic_chip_mem_alloc,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_an_isapnp.c,v 1.6 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: if_an_isapnp.c,v 1.7 2002/10/02 16:33:59 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_an_isapnp.c,v 1.6 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_an_isapnp.c,v 1.7 2002/10/02 16:33:59 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -85,7 +85,7 @@ struct an_isapnp_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(an_isapnp, sizeof(struct an_isapnp_softc),
|
||||
an_isapnp_match, an_isapnp_attach, NULL, NULL)
|
||||
an_isapnp_match, an_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
an_isapnp_match(struct device *parent, struct cfdata *match, void *aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_cs_isapnp.c,v 1.4 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: if_cs_isapnp.c,v 1.5 2002/10/02 16:34:00 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c)2001 YAMAMOTO Takashi,
|
||||
|
@ -27,7 +27,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_cs_isapnp.c,v 1.4 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_cs_isapnp.c,v 1.5 2002/10/02 16:34:00 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -61,7 +61,7 @@ int cs_isapnp_match(struct device *, struct cfdata *, void *);
|
|||
void cs_isapnp_attach(struct device *, struct device *, void *);
|
||||
|
||||
CFATTACH_DECL(cs_isapnp, sizeof(struct cs_softc),
|
||||
cs_isapnp_match, cs_isapnp_attach, NULL, NULL)
|
||||
cs_isapnp_match, cs_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
cs_isapnp_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ep_isapnp.c,v 1.24 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: if_ep_isapnp.c,v 1.25 2002/10/02 16:34:01 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Jonathan Stone <jonathan@NetBSD.org>
|
||||
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ep_isapnp.c,v 1.24 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ep_isapnp.c,v 1.25 2002/10/02 16:34:01 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -67,7 +67,7 @@ int ep_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void ep_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ep_isapnp, sizeof(struct ep_softc),
|
||||
ep_isapnp_match, ep_isapnp_attach, NULL, NULL)
|
||||
ep_isapnp_match, ep_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
ep_isapnp_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_le_isapnp.c,v 1.22 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: if_le_isapnp.c,v 1.23 2002/10/02 16:34:01 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
|
@ -68,7 +68,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_le_isapnp.c,v 1.22 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_le_isapnp.c,v 1.23 2002/10/02 16:34:01 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -108,7 +108,7 @@ int le_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void le_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(le_isapnp, sizeof(struct le_softc),
|
||||
le_isapnp_match, le_isapnp_attach, NULL, NULL)
|
||||
le_isapnp_match, le_isapnp_attach, NULL, NULL);
|
||||
|
||||
int le_isapnp_intredge __P((void *));
|
||||
static void le_isapnp_wrcsr __P((struct lance_softc *, u_int16_t, u_int16_t));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ne_isapnp.c,v 1.16 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: if_ne_isapnp.c,v 1.17 2002/10/02 16:34:02 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ne_isapnp.c,v 1.16 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ne_isapnp.c,v 1.17 2002/10/02 16:34:02 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -84,7 +84,7 @@ struct ne_isapnp_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(ne_isapnp, sizeof(struct ne_isapnp_softc),
|
||||
ne_isapnp_match, ne_isapnp_attach, NULL, NULL)
|
||||
ne_isapnp_match, ne_isapnp_attach, NULL, NULL);
|
||||
|
||||
static int
|
||||
ne_isapnp_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_tr_isapnp.c,v 1.8 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: if_tr_isapnp.c,v 1.9 2002/10/02 16:34:02 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_tr_isapnp.c,v 1.8 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_tr_isapnp.c,v 1.9 2002/10/02 16:34:02 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -72,7 +72,7 @@ int tr_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void tr_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(tr_isapnp, sizeof(struct tr_softc),
|
||||
tr_isapnp_match, tr_isapnp_attach, NULL, NULL)
|
||||
tr_isapnp_match, tr_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
tr_isapnp_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: isapnp.c,v 1.39 2002/09/30 21:31:53 thorpej Exp $ */
|
||||
/* $NetBSD: isapnp.c,v 1.40 2002/10/02 16:34:03 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: isapnp.c,v 1.39 2002/09/30 21:31:53 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: isapnp.c,v 1.40 2002/10/02 16:34:03 thorpej Exp $");
|
||||
|
||||
#include "isadma.h"
|
||||
|
||||
|
@ -90,7 +90,7 @@ static void isapnp_attach __P((struct device *, struct device *, void *));
|
|||
static void isapnp_callback __P((struct device *));
|
||||
|
||||
CFATTACH_DECL(isapnp, sizeof(struct isapnp_softc),
|
||||
isapnp_match, isapnp_attach, NULL, NULL)
|
||||
isapnp_match, isapnp_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* This keeps track if which ISA's we have been probed on.
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: isic_isapnp.c,v 1.14 2002/09/30 21:31:54 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: isic_isapnp.c,v 1.15 2002/10/02 16:34:03 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/errno.h>
|
||||
|
@ -90,7 +90,7 @@ static int isic_isapnp_probe __P((struct device *, struct cfdata *, void *));
|
|||
static void isic_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(isic_isapnp, sizeof(struct isic_softc),
|
||||
isic_isapnp_probe, isic_isapnp_attach, NULL, NULL)
|
||||
isic_isapnp_probe, isic_isapnp_attach, NULL, NULL);
|
||||
|
||||
typedef void (*allocmaps_func)(struct isapnp_attach_args *ipa, struct isic_softc *sc);
|
||||
typedef void (*attach_func)(struct isic_softc *sc);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: joy_isapnp.c,v 1.3 2002/09/30 21:31:54 thorpej Exp $ */
|
||||
/* $NetBSD: joy_isapnp.c,v 1.4 2002/10/02 16:34:04 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: joy_isapnp.c,v 1.3 2002/09/30 21:31:54 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: joy_isapnp.c,v 1.4 2002/10/02 16:34:04 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -57,7 +57,7 @@ int joy_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void joy_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(joy_isapnp, sizeof(struct joy_softc),
|
||||
joy_isapnp_match, joy_isapnp_attach, NULL, NULL)
|
||||
joy_isapnp_match, joy_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
joy_isapnp_match(parent, match, aux)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* $NetBSD: mpu_isapnp.c,v 1.7 2002/09/30 21:31:54 thorpej Exp $ */
|
||||
/* $NetBSD: mpu_isapnp.c,v 1.8 2002/10/02 16:34:04 thorpej Exp $ */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: mpu_isapnp.c,v 1.7 2002/09/30 21:31:54 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mpu_isapnp.c,v 1.8 2002/10/02 16:34:04 thorpej Exp $");
|
||||
|
||||
#include "midi.h"
|
||||
|
||||
|
@ -40,7 +40,7 @@ struct mpu_isapnp_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(mpu_isapnp, sizeof(struct mpu_isapnp_softc),
|
||||
mpu_isapnp_match, mpu_isapnp_attach, NULL, NULL)
|
||||
mpu_isapnp_match, mpu_isapnp_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
mpu_isapnp_match(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: sb_isapnp.c,v 1.40 2002/09/30 21:31:54 thorpej Exp $ */
|
||||
/* $NetBSD: sb_isapnp.c,v 1.41 2002/10/02 16:34:04 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991-1993 Regents of the University of California.
|
||||
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: sb_isapnp.c,v 1.40 2002/09/30 21:31:54 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: sb_isapnp.c,v 1.41 2002/10/02 16:34:04 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -67,7 +67,7 @@ int sb_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void sb_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(sb_isapnp, sizeof(struct sbdsp_softc),
|
||||
sb_isapnp_match, sb_isapnp_attach, NULL, NULL)
|
||||
sb_isapnp_match, sb_isapnp_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Probe / attach routines.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: wdc_isapnp.c,v 1.17 2002/09/30 21:31:54 thorpej Exp $ */
|
||||
/* $NetBSD: wdc_isapnp.c,v 1.18 2002/10/02 16:34:04 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: wdc_isapnp.c,v 1.17 2002/09/30 21:31:54 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: wdc_isapnp.c,v 1.18 2002/10/02 16:34:04 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -71,7 +71,7 @@ int wdc_isapnp_probe __P((struct device *, struct cfdata *, void *));
|
|||
void wdc_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(wdc_isapnp, sizeof(struct wdc_isapnp_softc),
|
||||
wdc_isapnp_probe, wdc_isapnp_attach, NULL, NULL)
|
||||
wdc_isapnp_probe, wdc_isapnp_attach, NULL, NULL);
|
||||
|
||||
#ifdef notyet
|
||||
static void wdc_isapnp_dma_setup __P((struct wdc_isapnp_softc *));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: wss_isapnp.c,v 1.13 2002/09/30 21:31:54 thorpej Exp $ */
|
||||
/* $NetBSD: wss_isapnp.c,v 1.14 2002/10/02 16:34:05 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997, 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: wss_isapnp.c,v 1.13 2002/09/30 21:31:54 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: wss_isapnp.c,v 1.14 2002/10/02 16:34:05 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -66,7 +66,7 @@ int wss_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void wss_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(wss_isapnp, sizeof(struct wss_softc),
|
||||
wss_isapnp_match, wss_isapnp_attach, NULL, NULL)
|
||||
wss_isapnp_match, wss_isapnp_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Probe / attach routines.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ym_isapnp.c,v 1.15 2002/09/30 21:31:54 thorpej Exp $ */
|
||||
/* $NetBSD: ym_isapnp.c,v 1.16 2002/10/02 16:34:05 thorpej Exp $ */
|
||||
|
||||
|
||||
/*
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ym_isapnp.c,v 1.15 2002/09/30 21:31:54 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ym_isapnp.c,v 1.16 2002/10/02 16:34:05 thorpej Exp $");
|
||||
|
||||
#include "mpu_ym.h"
|
||||
|
||||
|
@ -76,7 +76,7 @@ int ym_isapnp_match __P((struct device *, struct cfdata *, void *));
|
|||
void ym_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ym_isapnp, sizeof(struct ym_softc),
|
||||
ym_isapnp_match, ym_isapnp_attach, NULL, NULL)
|
||||
ym_isapnp_match, ym_isapnp_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Probe / attach routines.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: aha_mca.c,v 1.9 2002/09/30 21:36:45 thorpej Exp $ */
|
||||
/* $NetBSD: aha_mca.c,v 1.10 2002/10/02 16:34:06 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000-2002 The NetBSD Foundation, Inc.
|
||||
|
@ -52,7 +52,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: aha_mca.c,v 1.9 2002/09/30 21:36:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: aha_mca.c,v 1.10 2002/10/02 16:34:06 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -81,7 +81,7 @@ int aha_mca_probe __P((struct device *, struct cfdata *, void *));
|
|||
void aha_mca_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(aha_mca, sizeof(struct aha_softc),
|
||||
aha_mca_probe, aha_mca_attach, NULL, NULL)
|
||||
aha_mca_probe, aha_mca_attach, NULL, NULL);
|
||||
|
||||
int
|
||||
aha_mca_probe(parent, match, aux)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_mca.c,v 1.8 2002/09/30 21:36:45 thorpej Exp $ */
|
||||
/* $NetBSD: com_mca.c,v 1.9 2002/10/02 16:34:06 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -76,7 +76,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_mca.c,v 1.8 2002/09/30 21:36:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_mca.c,v 1.9 2002/10/02 16:34:06 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -116,7 +116,7 @@ static int neocom1_getcfg __P((struct mca_attach_args *, int *, int *));
|
|||
static int ibm_mpcom_getcfg __P((struct mca_attach_args *, int *, int *));
|
||||
|
||||
CFATTACH_DECL(com_mca, sizeof(struct com_mca_softc),
|
||||
com_mca_probe, com_mca_attach, NULL, NULL)
|
||||
com_mca_probe, com_mca_attach, NULL, NULL);
|
||||
|
||||
static const struct com_mca_product {
|
||||
u_int32_t cp_prodid; /* MCA product ID */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ed_mca.c,v 1.16 2002/09/30 21:36:45 thorpej Exp $ */
|
||||
/* $NetBSD: ed_mca.c,v 1.17 2002/10/02 16:34:06 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ed_mca.c,v 1.16 2002/09/30 21:36:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ed_mca.c,v 1.17 2002/10/02 16:34:06 thorpej Exp $");
|
||||
|
||||
#include "rnd.h"
|
||||
#include "locators.h"
|
||||
|
@ -86,7 +86,7 @@ static int ed_mca_probe __P((struct device *, struct cfdata *, void *));
|
|||
static void ed_mca_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ed_mca, sizeof(struct ed_softc),
|
||||
ed_mca_probe, ed_mca_attach, NULL, NULL)
|
||||
ed_mca_probe, ed_mca_attach, NULL, NULL);
|
||||
|
||||
extern struct cfdriver ed_cd;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: edc_mca.c,v 1.19 2002/09/30 21:36:45 thorpej Exp $ */
|
||||
/* $NetBSD: edc_mca.c,v 1.20 2002/10/02 16:34:07 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -50,7 +50,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: edc_mca.c,v 1.19 2002/09/30 21:36:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: edc_mca.c,v 1.20 2002/10/02 16:34:07 thorpej Exp $");
|
||||
|
||||
#include "rnd.h"
|
||||
|
||||
|
@ -120,7 +120,7 @@ int edc_mca_probe __P((struct device *, struct cfdata *, void *));
|
|||
void edc_mca_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(edc_mca, sizeof(struct edc_mca_softc),
|
||||
edc_mca_probe, edc_mca_attach, NULL, NULL)
|
||||
edc_mca_probe, edc_mca_attach, NULL, NULL);
|
||||
|
||||
static int edc_intr __P((void *));
|
||||
static void edc_dump_status_block __P((struct edc_mca_softc *,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: esp_mca.c,v 1.5 2002/09/30 21:36:45 thorpej Exp $ */
|
||||
/* $NetBSD: esp_mca.c,v 1.6 2002/10/02 16:34:09 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -94,7 +94,7 @@ static void esp_mca_attach __P((struct device *, struct device *, void *));
|
|||
static int esp_mca_match __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
CFATTACH_DECL(esp_mca, sizeof(struct esp_softc),
|
||||
esp_mca_match, esp_mca_attach, NULL, NULL)
|
||||
esp_mca_match, esp_mca_attach, NULL, NULL);
|
||||
|
||||
/*
|
||||
* Functions and the switch for the MI code.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ate_mca.c,v 1.6 2002/09/30 21:36:45 thorpej Exp $ */
|
||||
/* $NetBSD: if_ate_mca.c,v 1.7 2002/10/02 16:34:10 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ate_mca.c,v 1.6 2002/09/30 21:36:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ate_mca.c,v 1.7 2002/10/02 16:34:10 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -78,7 +78,7 @@ struct ate_softc {
|
|||
};
|
||||
|
||||
CFATTACH_DECL(ate_mca, sizeof(struct ate_softc),
|
||||
ate_mca_match, ate_mca_attach, NULL, NULL)
|
||||
ate_mca_match, ate_mca_attach, NULL, NULL);
|
||||
|
||||
static const struct ate_mca_product {
|
||||
u_int32_t at_prodid; /* MCA product ID */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_elmc_mca.c,v 1.10 2002/09/30 21:36:45 thorpej Exp $ */
|
||||
/* $NetBSD: if_elmc_mca.c,v 1.11 2002/10/02 16:34:10 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -46,7 +46,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_elmc_mca.c,v 1.10 2002/09/30 21:36:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_elmc_mca.c,v 1.11 2002/10/02 16:34:10 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -442,4 +442,4 @@ elmc_mca_intrhook(sc, why)
|
|||
}
|
||||
|
||||
CFATTACH_DECL(elmc_mca, sizeof(struct elmc_mca_softc),
|
||||
elmc_mca_match, elmc_mca_attach, NULL, NULL)
|
||||
elmc_mca_match, elmc_mca_attach, NULL, NULL);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ep_mca.c,v 1.9 2002/09/30 21:36:45 thorpej Exp $ */
|
||||
/* $NetBSD: if_ep_mca.c,v 1.10 2002/10/02 16:34:11 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -76,7 +76,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ep_mca.c,v 1.9 2002/09/30 21:36:45 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ep_mca.c,v 1.10 2002/10/02 16:34:11 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -110,7 +110,7 @@ int ep_mca_match __P((struct device *, struct cfdata *, void *));
|
|||
void ep_mca_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ep_mca, sizeof(struct ep_softc),
|
||||
ep_mca_match, ep_mca_attach, NULL, NULL)
|
||||
ep_mca_match, ep_mca_attach, NULL, NULL);
|
||||
|
||||
const struct ep_mca_product {
|
||||
u_int32_t epp_prodid; /* MCA product ID */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_le_mca.c,v 1.5 2002/09/30 21:36:46 thorpej Exp $ */
|
||||
/* $NetBSD: if_le_mca.c,v 1.6 2002/10/02 16:34:11 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -52,7 +52,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_le_mca.c,v 1.5 2002/09/30 21:36:46 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_le_mca.c,v 1.6 2002/10/02 16:34:11 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -107,7 +107,7 @@ static __inline void le_mca_wrreg __P((struct le_mca_softc *, int, int));
|
|||
le_mca_wrreg(sc, reg_number, RAP | REGWRITE)
|
||||
|
||||
CFATTACH_DECL(le_mca, sizeof(struct le_mca_softc),
|
||||
le_mca_match, le_mca_attach, NULL, NULL)
|
||||
le_mca_match, le_mca_attach, NULL, NULL);
|
||||
|
||||
/* SKNET MC+ POS mapping */
|
||||
static const u_int8_t sknet_mcp_irq[] = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ne_mca.c,v 1.5 2002/09/30 21:36:46 thorpej Exp $ */
|
||||
/* $NetBSD: if_ne_mca.c,v 1.6 2002/10/02 16:34:12 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -45,7 +45,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ne_mca.c,v 1.5 2002/09/30 21:36:46 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_ne_mca.c,v 1.6 2002/10/02 16:34:12 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -87,7 +87,7 @@ int ne_mca_match __P((struct device *, struct cfdata *, void *));
|
|||
void ne_mca_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
CFATTACH_DECL(ne_mca, sizeof(struct ne_mca_softc),
|
||||
ne_mca_match, ne_mca_attach, NULL, NULL)
|
||||
ne_mca_match, ne_mca_attach, NULL, NULL);
|
||||
|
||||
static const struct ne_mca_products {
|
||||
u_int32_t ne_id;
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue