Declare all cfattach structures const.
This commit is contained in:
parent
35975338b0
commit
9a711d6985
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cpu.c,v 1.4 2002/09/27 03:17:40 thorpej Exp $ */
|
||||
/* $NetBSD: cpu.c,v 1.5 2002/09/27 20:29:02 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 Ben Harris
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.4 2002/09/27 03:17:40 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.5 2002/09/27 20:29:02 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/proc.h>
|
||||
|
@ -67,7 +67,7 @@ struct cpu_softc {
|
|||
struct device sc_dev;
|
||||
};
|
||||
|
||||
struct cfattach cpu_root_ca = {
|
||||
const struct cfattach cpu_root_ca = {
|
||||
sizeof(struct cpu_softc), cpu_match, cpu_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fpu.c,v 1.2 2002/03/24 23:37:42 bjh21 Exp $ */
|
||||
/* $NetBSD: fpu.c,v 1.3 2002/09/27 20:29:03 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 Ben Harris
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: fpu.c,v 1.2 2002/03/24 23:37:42 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: fpu.c,v 1.3 2002/09/27 20:29:03 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/proc.h>
|
||||
|
@ -51,7 +51,7 @@ static int fpu_match(struct device *, struct cfdata *, void *);
|
|||
static void fpu_attach(struct device *, struct device *, void *);
|
||||
static register_t fpu_identify(void);
|
||||
|
||||
struct cfattach fpu_ca = {
|
||||
const struct cfattach fpu_ca = {
|
||||
sizeof(struct fpu_softc), fpu_match, fpu_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: iobus.c,v 1.4 2002/09/27 03:17:41 thorpej Exp $ */
|
||||
/* $NetBSD: iobus.c,v 1.5 2002/09/27 20:29:04 thorpej Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 1998 Ben Harris
|
||||
* All rights reserved.
|
||||
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: iobus.c,v 1.4 2002/09/27 03:17:41 thorpej Exp $");
|
||||
__RCSID("$NetBSD: iobus.c,v 1.5 2002/09/27 20:29:04 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -53,7 +53,7 @@ struct iobus_softc {
|
|||
struct device sc_dev;
|
||||
};
|
||||
|
||||
struct cfattach iobus_ca = {
|
||||
const struct cfattach iobus_ca = {
|
||||
sizeof(struct iobus_softc), iobus_match, iobus_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ioc.c,v 1.3 2002/09/27 03:17:41 thorpej Exp $ */
|
||||
/* $NetBSD: ioc.c,v 1.4 2002/09/27 20:29:04 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998, 1999, 2000 Ben Harris
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: ioc.c,v 1.3 2002/09/27 03:17:41 thorpej Exp $");
|
||||
__RCSID("$NetBSD: ioc.c,v 1.4 2002/09/27 20:29:04 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -58,7 +58,7 @@ static int ioc_print(void *aux, const char *pnp);
|
|||
static int ioc_irq_clock(void *cookie);
|
||||
static int ioc_irq_statclock(void *cookie);
|
||||
|
||||
struct cfattach ioc_ca = {
|
||||
const struct cfattach ioc_ca = {
|
||||
sizeof(struct ioc_softc), ioc_match, ioc_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: upc_iobus.c,v 1.2 2002/03/24 23:37:44 bjh21 Exp $ */
|
||||
/* $NetBSD: upc_iobus.c,v 1.3 2002/09/27 20:29:04 thorpej Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
* All rights reserved.
|
||||
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: upc_iobus.c,v 1.2 2002/03/24 23:37:44 bjh21 Exp $");
|
||||
__RCSID("$NetBSD: upc_iobus.c,v 1.3 2002/09/27 20:29:04 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
|
||||
|
@ -60,7 +60,7 @@ struct upc_iobus_softc {
|
|||
struct evcnt sc_intrcntp;
|
||||
};
|
||||
|
||||
struct cfattach upc_iobus_ca = {
|
||||
const struct cfattach upc_iobus_ca = {
|
||||
sizeof(struct upc_iobus_softc), upc_iobus_match, upc_iobus_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: arckbd.c,v 1.2 2002/03/24 23:37:44 bjh21 Exp $ */
|
||||
/* $NetBSD: arckbd.c,v 1.3 2002/09/27 20:29:05 thorpej Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 1998, 1999, 2000 Ben Harris
|
||||
* All rights reserved.
|
||||
|
@ -42,7 +42,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: arckbd.c,v 1.2 2002/03/24 23:37:44 bjh21 Exp $");
|
||||
__RCSID("$NetBSD: arckbd.c,v 1.3 2002/09/27 20:29:05 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/errno.h>
|
||||
|
@ -164,7 +164,7 @@ struct arckbd_softc {
|
|||
#define AKF_SENTLEDS 0x08
|
||||
#define AKF_POLLING 0x10
|
||||
|
||||
struct cfattach arckbd_ca = {
|
||||
const struct cfattach arckbd_ca = {
|
||||
sizeof(struct arckbd_softc), arckbd_match, arckbd_attach
|
||||
};
|
||||
|
||||
|
@ -178,13 +178,13 @@ struct cfattach arckbd_ca = {
|
|||
*/
|
||||
|
||||
#if NARCWSKBD > 0
|
||||
struct cfattach arcwskbd_ca = {
|
||||
const struct cfattach arcwskbd_ca = {
|
||||
sizeof(struct device), arcwskbd_match, arcwskbd_attach
|
||||
};
|
||||
#endif
|
||||
|
||||
#if NARCWSMOUSE > 0
|
||||
struct cfattach arcwsmouse_ca = {
|
||||
const struct cfattach arcwsmouse_ca = {
|
||||
sizeof(struct device), arcwsmouse_match, arcwsmouse_attach
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: arcpp.c,v 1.2 2002/09/06 13:18:43 gehenna Exp $ */
|
||||
/* $NetBSD: arcpp.c,v 1.3 2002/09/27 20:29:05 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 Ben Harris
|
||||
|
@ -52,7 +52,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: arcpp.c,v 1.2 2002/09/06 13:18:43 gehenna Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: arcpp.c,v 1.3 2002/09/27 20:29:05 thorpej Exp $");
|
||||
|
||||
#include <sys/conf.h>
|
||||
#include <sys/device.h>
|
||||
|
@ -122,7 +122,7 @@ static void arcpp_attach(struct device *, struct device *, void *);
|
|||
static int arcppintr(void *);
|
||||
static int arcpppushbytes(struct arcpp_softc *);
|
||||
|
||||
struct cfattach arcpp_ca = {
|
||||
const struct cfattach arcpp_ca = {
|
||||
sizeof(struct arcpp_softc), arcpp_match, arcpp_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_eca.c,v 1.1 2002/03/24 15:47:16 bjh21 Exp $ */
|
||||
/* $NetBSD: if_eca.c,v 1.2 2002/09/27 20:29:06 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 Ben Harris
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_eca.c,v 1.1 2002/03/24 15:47:16 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_eca.c,v 1.2 2002/09/27 20:29:06 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/malloc.h>
|
||||
|
@ -73,7 +73,7 @@ static void eca_gotframe(void *);
|
|||
|
||||
struct eca_softc *eca_fiqowner;
|
||||
|
||||
struct cfattach eca_ca = {
|
||||
const struct cfattach eca_ca = {
|
||||
sizeof(struct eca_softc), eca_match, eca_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: iic.c,v 1.2 2002/09/27 03:17:41 thorpej Exp $ */
|
||||
/* $NetBSD: iic.c,v 1.3 2002/09/27 20:29:06 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994-1996 Mark Brinicombe.
|
||||
|
@ -47,7 +47,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: iic.c,v 1.2 2002/09/27 03:17:41 thorpej Exp $");
|
||||
__RCSID("$NetBSD: iic.c,v 1.3 2002/09/27 20:29:06 thorpej Exp $");
|
||||
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -72,7 +72,7 @@ static int iic_match (struct device *, struct cfdata *, void *);
|
|||
static void iic_attach(struct device *, struct device *, void *);
|
||||
static int iicsearch(struct device *, struct cfdata *, void *);
|
||||
|
||||
struct cfattach iic_ca = {
|
||||
const struct cfattach iic_ca = {
|
||||
sizeof(struct iic_softc), iic_match, iic_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ioeb.c,v 1.2 2002/03/24 23:37:44 bjh21 Exp $ */
|
||||
/* $NetBSD: ioeb.c,v 1.3 2002/09/27 20:29:06 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: ioeb.c,v 1.2 2002/03/24 23:37:44 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ioeb.c,v 1.3 2002/09/27 20:29:06 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -49,7 +49,7 @@ struct ioeb_softc {
|
|||
static int ioeb_match(struct device *, struct cfdata *, void *);
|
||||
static void ioeb_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach ioeb_ca = {
|
||||
const struct cfattach ioeb_ca = {
|
||||
sizeof(struct ioeb_softc), ioeb_match, ioeb_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: latches.c,v 1.1 2002/03/24 15:47:20 bjh21 Exp $ */
|
||||
/* $NetBSD: latches.c,v 1.2 2002/09/27 20:29:07 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 Ben Harris
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: latches.c,v 1.1 2002/03/24 15:47:20 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: latches.c,v 1.2 2002/09/27 20:29:07 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -54,7 +54,7 @@ struct latches_softc {
|
|||
static int latches_match(struct device *, struct cfdata *, void *);
|
||||
static void latches_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach latches_ca = {
|
||||
const struct cfattach latches_ca = {
|
||||
sizeof(struct latches_softc), latches_match, latches_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: rtc.c,v 1.1 2002/03/24 15:47:21 bjh21 Exp $ */
|
||||
/* $NetBSD: rtc.c,v 1.2 2002/09/27 20:29:07 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
|
@ -45,7 +45,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: rtc.c,v 1.1 2002/03/24 15:47:21 bjh21 Exp $");
|
||||
__RCSID("$NetBSD: rtc.c,v 1.2 2002/09/27 20:29:07 thorpej Exp $");
|
||||
|
||||
#include <sys/errno.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -86,7 +86,7 @@ struct rtc_softc *the_rtc;
|
|||
|
||||
/* device and attach structures */
|
||||
|
||||
struct cfattach rtc_ca = {
|
||||
const struct cfattach rtc_ca = {
|
||||
sizeof(struct rtc_softc), rtcmatch, rtcattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ssn.c,v 1.2 2002/03/24 23:17:36 bjh21 Exp $ */
|
||||
/* $NetBSD: ssn.c,v 1.3 2002/09/27 20:29:07 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 Ben Harris
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: ssn.c,v 1.2 2002/03/24 23:17:36 bjh21 Exp $");
|
||||
__RCSID("$NetBSD: ssn.c,v 1.3 2002/09/27 20:29:07 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -51,7 +51,7 @@ struct ssn_softc {
|
|||
static int ssn_match(struct device *, struct cfdata *, void *);
|
||||
static void ssn_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach ssn_ca = {
|
||||
const struct cfattach ssn_ca = {
|
||||
sizeof(struct ssn_softc), ssn_match, ssn_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_eh.c,v 1.3 2002/05/22 22:43:16 bjh21 Exp $ */
|
||||
/* $NetBSD: if_eh.c,v 1.4 2002/09/27 20:29:08 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
|
@ -52,7 +52,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_eh.c,v 1.3 2002/05/22 22:43:16 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_eh.c,v 1.4 2002/09/27 20:29:08 thorpej Exp $");
|
||||
|
||||
#include <sys/systm.h>
|
||||
#include <sys/device.h>
|
||||
|
@ -134,7 +134,7 @@ static void eh_mediastatus(struct dp8390_softc *, struct ifmediareq *);
|
|||
static int eh_match(struct device *, struct cfdata *, void *);
|
||||
static void eh_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach eh_ca = {
|
||||
const struct cfattach eh_ca = {
|
||||
sizeof(struct eh_softc), eh_match, eh_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: podulebus.c,v 1.4 2002/09/27 03:17:41 thorpej Exp $ */
|
||||
/* $NetBSD: podulebus.c,v 1.5 2002/09/27 20:29:09 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: podulebus.c,v 1.4 2002/09/27 03:17:41 thorpej Exp $");
|
||||
__RCSID("$NetBSD: podulebus.c,v 1.5 2002/09/27 20:29:09 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/malloc.h>
|
||||
|
@ -74,7 +74,7 @@ struct podulebus_softc {
|
|||
struct ioc_attach_args sc_ioc;
|
||||
};
|
||||
|
||||
struct cfattach podulebus_ca = {
|
||||
const struct cfattach podulebus_ca = {
|
||||
sizeof(struct podulebus_softc), podulebus_match, podulebus_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: powerrom.c,v 1.1 2002/03/24 15:47:23 bjh21 Exp $ */
|
||||
/* $NetBSD: powerrom.c,v 1.2 2002/09/27 20:29:09 thorpej Exp $ */
|
||||
|
||||
/* Test driver to see if we can talk to PowerROMs */
|
||||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: powerrom.c,v 1.1 2002/03/24 15:47:23 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: powerrom.c,v 1.2 2002/09/27 20:29:09 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -14,7 +14,7 @@ __KERNEL_RCSID(0, "$NetBSD: powerrom.c,v 1.1 2002/03/24 15:47:23 bjh21 Exp $");
|
|||
int powerrom_match(struct device *, struct cfdata *, void *);
|
||||
void powerrom_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach powerrom_ca = {
|
||||
const struct cfattach powerrom_ca = {
|
||||
sizeof(struct device), powerrom_match, powerrom_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: unixbp.c,v 1.2 2002/03/24 23:37:45 bjh21 Exp $ */
|
||||
/* $NetBSD: unixbp.c,v 1.3 2002/09/27 20:29:10 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 Ben Harris
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: unixbp.c,v 1.2 2002/03/24 23:37:45 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: unixbp.c,v 1.3 2002/09/27 20:29:10 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -50,7 +50,7 @@ struct unixbp_softc {
|
|||
static int unixbp_match(struct device *, struct cfdata *, void *);
|
||||
static void unixbp_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach unixbp_ca = {
|
||||
const struct cfattach unixbp_ca = {
|
||||
sizeof(struct unixbp_softc), unixbp_match, unixbp_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: arcvideo.c,v 1.3 2002/07/04 14:43:47 junyoung Exp $ */
|
||||
/* $NetBSD: arcvideo.c,v 1.4 2002/09/27 20:29:10 thorpej Exp $ */
|
||||
/*-
|
||||
* Copyright (c) 1998, 2000 Ben Harris
|
||||
* All rights reserved.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: arcvideo.c,v 1.3 2002/07/04 14:43:47 junyoung Exp $");
|
||||
__RCSID("$NetBSD: arcvideo.c,v 1.4 2002/09/27 20:29:10 thorpej Exp $");
|
||||
|
||||
#include <sys/device.h>
|
||||
#include <sys/errno.h>
|
||||
|
@ -97,7 +97,7 @@ struct arcvideo_softc {
|
|||
#define AV_VIDEO_ON 0x01
|
||||
};
|
||||
|
||||
struct cfattach arcvideo_ca = {
|
||||
const struct cfattach arcvideo_ca = {
|
||||
sizeof(struct arcvideo_softc), arcvideo_match, arcvideo_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_pioc.c,v 1.4 2002/03/10 15:47:44 bjh21 Exp $ */
|
||||
/* $NetBSD: com_pioc.c,v 1.5 2002/09/27 20:29:11 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -73,7 +73,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_pioc.c,v 1.4 2002/03/10 15:47:44 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_pioc.c,v 1.5 2002/09/27 20:29:11 thorpej Exp $");
|
||||
|
||||
#include <sys/systm.h>
|
||||
#include <sys/tty.h>
|
||||
|
@ -109,7 +109,7 @@ static void com_pioc_cleanup __P((void *));
|
|||
|
||||
/* device attach structure */
|
||||
|
||||
struct cfattach com_pioc_ca = {
|
||||
const struct cfattach com_pioc_ca = {
|
||||
sizeof(struct com_pioc_softc), com_pioc_probe, com_pioc_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fd.c,v 1.7 2002/09/27 15:35:29 provos Exp $ */
|
||||
/* $NetBSD: fd.c,v 1.8 2002/09/27 20:29:12 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -186,7 +186,7 @@ int fdcprobe __P((struct device *, struct cfdata *, void *));
|
|||
int fdprint __P((void *, const char *));
|
||||
void fdcattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach fdc_ca = {
|
||||
const struct cfattach fdc_ca = {
|
||||
sizeof(struct fdc_softc), fdcprobe, fdcattach
|
||||
};
|
||||
|
||||
|
@ -264,7 +264,7 @@ void fdattach __P((struct device *, struct device *, void *));
|
|||
extern char floppy_read_fiq[], floppy_read_fiq_end[];
|
||||
extern char floppy_write_fiq[], floppy_write_fiq_end[];
|
||||
|
||||
struct cfattach fd_ca = {
|
||||
const struct cfattach fd_ca = {
|
||||
sizeof(struct fd_softc), fdprobe, fdattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: lpt_pioc.c,v 1.5 2002/03/10 15:47:44 bjh21 Exp $ */
|
||||
/* $NetBSD: lpt_pioc.c,v 1.6 2002/09/27 20:29:12 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Mark Brinicombe
|
||||
|
@ -36,7 +36,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_pioc.c,v 1.5 2002/03/10 15:47:44 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_pioc.c,v 1.6 2002/09/27 20:29:12 thorpej Exp $");
|
||||
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -59,7 +59,7 @@ static void lpt_pioc_attach __P((struct device *, struct device *, void *));
|
|||
|
||||
/* device attach structure */
|
||||
|
||||
struct cfattach lpt_pioc_ca = {
|
||||
const struct cfattach lpt_pioc_ca = {
|
||||
sizeof(struct lpt_softc), lpt_pioc_probe, lpt_pioc_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pioc.c,v 1.2 2002/09/27 03:17:42 thorpej Exp $ */
|
||||
/* $NetBSD: pioc.c,v 1.3 2002/09/27 20:29:13 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Mark Brinicombe.
|
||||
|
@ -100,7 +100,7 @@ static void piocgetid __P((bus_space_tag_t iot, bus_space_handle_t ioh,
|
|||
|
||||
/* device attach and driver structure */
|
||||
|
||||
struct cfattach pioc_ca = {
|
||||
const struct cfattach pioc_ca = {
|
||||
sizeof(struct pioc_softc), piocmatch, piocattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: wdc_pioc.c,v 1.3 2002/09/27 15:35:29 provos Exp $ */
|
||||
/* $NetBSD: wdc_pioc.c,v 1.4 2002/09/27 20:29:13 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997-1998 Mark Brinicombe.
|
||||
|
@ -64,7 +64,7 @@ static int wdc_pioc_probe __P((struct device *, struct cfdata *, void *));
|
|||
static void wdc_pioc_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
/* device attach structure */
|
||||
struct cfattach wdc_pioc_ca = {
|
||||
const struct cfattach wdc_pioc_ca = {
|
||||
sizeof(struct wdc_pioc_softc), wdc_pioc_probe, wdc_pioc_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: amps.c,v 1.3 2002/05/22 22:43:17 bjh21 Exp $ */
|
||||
/* $NetBSD: amps.c,v 1.4 2002/09/27 20:29:14 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
|
@ -94,7 +94,7 @@ int amps_probe __P((struct device *, struct cfdata *, void *));
|
|||
void amps_attach __P((struct device *, struct device *, void *));
|
||||
void amps_shutdown __P((void *arg));
|
||||
|
||||
struct cfattach amps_ca = {
|
||||
const struct cfattach amps_ca = {
|
||||
sizeof(struct amps_softc), amps_probe, amps_attach
|
||||
};
|
||||
|
||||
|
@ -229,7 +229,7 @@ static void com_amps_attach __P((struct device *, struct device *, void *));
|
|||
|
||||
/* device attach structure */
|
||||
|
||||
struct cfattach com_amps_ca = {
|
||||
const struct cfattach com_amps_ca = {
|
||||
sizeof(struct com_amps_softc), com_amps_probe, com_amps_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: asc.c,v 1.8 2002/09/27 15:35:30 provos Exp $ */
|
||||
/* $NetBSD: asc.c,v 1.9 2002/09/27 20:29:15 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Richard Earnshaw
|
||||
|
@ -74,7 +74,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: asc.c,v 1.8 2002/09/27 15:35:30 provos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: asc.c,v 1.9 2002/09/27 20:29:15 thorpej Exp $");
|
||||
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -122,7 +122,7 @@ void asc_dump (void);
|
|||
int asc_dmadebug = 0;
|
||||
#endif
|
||||
|
||||
struct cfattach asc_ca = {
|
||||
const struct cfattach asc_ca = {
|
||||
sizeof(struct asc_softc), ascmatch, ascattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cosc.c,v 1.6 2002/09/27 15:35:30 provos Exp $ */
|
||||
/* $NetBSD: cosc.c,v 1.7 2002/09/27 20:29:15 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996 Mark Brinicombe
|
||||
|
@ -62,7 +62,7 @@
|
|||
void coscattach __P((struct device *, struct device *, void *));
|
||||
int coscmatch __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
struct cfattach cosc_ca = {
|
||||
const struct cfattach cosc_ca = {
|
||||
sizeof(struct cosc_softc), coscmatch, coscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: csa.c,v 1.3 2002/05/22 22:43:18 bjh21 Exp $ */
|
||||
/* $NetBSD: csa.c,v 1.4 2002/09/27 20:29:15 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -97,7 +97,7 @@ struct csa_softc {
|
|||
volatile u_char *sc_data;
|
||||
};
|
||||
|
||||
struct cfattach csa_ca = {
|
||||
const struct cfattach csa_ca = {
|
||||
sizeof(struct csa_softc), csa_match, csa_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: csc.c,v 1.5 2002/09/27 15:35:30 provos Exp $ */
|
||||
/* $NetBSD: csc.c,v 1.6 2002/09/27 20:29:15 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -63,7 +63,7 @@
|
|||
void cscattach __P((struct device *, struct device *, void *));
|
||||
int cscmatch __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
struct cfattach csc_ca = {
|
||||
const struct cfattach csc_ca = {
|
||||
sizeof(struct csc_softc), cscmatch, cscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: icside.c,v 1.6 2002/09/15 11:27:47 bjh21 Exp $ */
|
||||
/* $NetBSD: icside.c,v 1.7 2002/09/27 20:29:16 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997-1998 Mark Brinicombe
|
||||
|
@ -42,7 +42,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: icside.c,v 1.6 2002/09/15 11:27:47 bjh21 Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: icside.c,v 1.7 2002/09/27 20:29:16 thorpej Exp $");
|
||||
|
||||
#include <sys/systm.h>
|
||||
#include <sys/conf.h>
|
||||
|
@ -99,7 +99,7 @@ void icside_attach(struct device *, struct device *, void *);
|
|||
int icside_intr(void *);
|
||||
void icside_v6_shutdown(void *);
|
||||
|
||||
struct cfattach icside_ca = {
|
||||
const struct cfattach icside_ca = {
|
||||
sizeof(struct icside_softc), icside_probe, icside_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ie.c,v 1.7 2002/09/27 15:35:30 provos Exp $ */
|
||||
/* $NetBSD: if_ie.c,v 1.8 2002/09/27 20:29:16 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Melvin Tang-Richardson.
|
||||
|
@ -61,7 +61,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__RCSID("$NetBSD: if_ie.c,v 1.7 2002/09/27 15:35:30 provos Exp $");
|
||||
__RCSID("$NetBSD: if_ie.c,v 1.8 2002/09/27 20:29:16 thorpej Exp $");
|
||||
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -200,7 +200,7 @@ static void start_receiver(struct ie_softc *);
|
|||
* Our cfattach structure for the autoconfig system to chew on
|
||||
*/
|
||||
|
||||
struct cfattach ie_ca = {
|
||||
const struct cfattach ie_ca = {
|
||||
sizeof(struct ie_softc), ieprobe, ieattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ne_pbus.c,v 1.6 2002/09/27 15:35:31 provos Exp $ */
|
||||
/* $NetBSD: if_ne_pbus.c,v 1.7 2002/09/27 20:29:16 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -103,7 +103,7 @@ struct ne_pbus_softc {
|
|||
static int ne_pbus_probe __P((struct device *, struct cfdata *, void *));
|
||||
static void ne_pbus_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach ne_pbus_ca = {
|
||||
const struct cfattach ne_pbus_ca = {
|
||||
sizeof(struct ne_pbus_softc), ne_pbus_probe, ne_pbus_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: podulebus.c,v 1.11 2002/09/27 15:35:31 provos Exp $ */
|
||||
/* $NetBSD: podulebus.c,v 1.12 2002/09/27 20:29:17 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994-1996 Mark Brinicombe.
|
||||
|
@ -43,7 +43,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: podulebus.c,v 1.11 2002/09/27 15:35:31 provos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: podulebus.c,v 1.12 2002/09/27 20:29:17 thorpej Exp $");
|
||||
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -525,7 +525,7 @@ podulebusattach(parent, self, aux)
|
|||
}
|
||||
|
||||
|
||||
struct cfattach podulebus_ca = {
|
||||
const struct cfattach podulebus_ca = {
|
||||
sizeof(struct device), podulebusmatch, podulebusattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ptsc.c,v 1.4 2002/09/27 15:35:31 provos Exp $ */
|
||||
/* $NetBSD: ptsc.c,v 1.5 2002/09/27 20:29:17 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Scott Stevens
|
||||
|
@ -68,7 +68,7 @@
|
|||
void ptscattach __P((struct device *, struct device *, void *));
|
||||
int ptscmatch __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
struct cfattach ptsc_ca = {
|
||||
const struct cfattach ptsc_ca = {
|
||||
sizeof(struct ptsc_softc), ptscmatch, ptscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: rapide.c,v 1.4 2002/09/27 15:35:31 provos Exp $ */
|
||||
/* $NetBSD: rapide.c,v 1.5 2002/09/27 20:29:18 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997-1998 Mark Brinicombe
|
||||
|
@ -125,7 +125,7 @@ void rapide_attach __P((struct device *, struct device *, void *));
|
|||
void rapide_shutdown __P((void *arg));
|
||||
int rapide_intr __P((void *));
|
||||
|
||||
struct cfattach rapide_ca = {
|
||||
const struct cfattach rapide_ca = {
|
||||
sizeof(struct rapide_softc), rapide_probe, rapide_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: simide.c,v 1.4 2002/09/27 15:35:31 provos Exp $ */
|
||||
/* $NetBSD: simide.c,v 1.5 2002/09/27 20:29:18 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997-1998 Mark Brinicombe
|
||||
|
@ -95,7 +95,7 @@ void simide_attach __P((struct device *, struct device *, void *));
|
|||
void simide_shutdown __P((void *arg));
|
||||
int simide_intr __P((void *arg));
|
||||
|
||||
struct cfattach simide_ca = {
|
||||
const struct cfattach simide_ca = {
|
||||
sizeof(struct simide_softc), simide_probe, simide_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cpu.c,v 1.1 2001/05/28 16:22:15 thorpej Exp $ */
|
||||
/* $NetBSD: cpu.c,v 1.2 2002/09/27 20:29:18 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
|
||||
|
@ -36,7 +36,7 @@
|
|||
int cpu_match(struct device *, struct cfdata *, void *);
|
||||
void cpu_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach cpu_ca = {
|
||||
const struct cfattach cpu_ca = {
|
||||
sizeof (struct device), cpu_match, cpu_attach
|
||||
};
|
||||
extern struct cfdriver cpu_cd;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bonito_mainbus.c,v 1.2 2002/05/16 01:01:30 thorpej Exp $ */
|
||||
/* $NetBSD: bonito_mainbus.c,v 1.3 2002/09/27 20:29:19 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -61,7 +61,7 @@ struct bonito_softc {
|
|||
int bonito_mainbus_match(struct device *, struct cfdata *, void *);
|
||||
void bonito_mainbus_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach bonito_mainbus_ca = {
|
||||
const struct cfattach bonito_mainbus_ca = {
|
||||
sizeof(struct bonito_softc), bonito_mainbus_match,
|
||||
bonito_mainbus_attach,
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_mainbus.c,v 1.4 2002/09/27 02:24:07 thorpej Exp $ */
|
||||
/* $NetBSD: com_mainbus.c,v 1.5 2002/09/27 20:29:19 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_mainbus.c,v 1.4 2002/09/27 02:24:07 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_mainbus.c,v 1.5 2002/09/27 20:29:19 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -75,7 +75,7 @@ int com_mainbus_match(struct device *, struct cfdata *, void *);
|
|||
void com_mainbus_attach(struct device *, struct device *, void *);
|
||||
void com_mainbus_cleanup(void *);
|
||||
|
||||
struct cfattach com_mainbus_ca = {
|
||||
const struct cfattach com_mainbus_ca = {
|
||||
sizeof(struct com_mainbus_softc), com_mainbus_match,
|
||||
com_mainbus_attach
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: lpt_mainbus.c,v 1.4 2002/09/27 02:24:07 thorpej Exp $ */
|
||||
/* $NetBSD: lpt_mainbus.c,v 1.5 2002/09/27 20:29:19 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_mainbus.c,v 1.4 2002/09/27 02:24:07 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_mainbus.c,v 1.5 2002/09/27 20:29:19 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -72,7 +72,7 @@ struct lpt_mainbus_softc {
|
|||
int lpt_mainbus_match(struct device *, struct cfdata *, void *);
|
||||
void lpt_mainbus_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach lpt_mainbus_ca = {
|
||||
const struct cfattach lpt_mainbus_ca = {
|
||||
sizeof(struct lpt_mainbus_softc), lpt_mainbus_match,
|
||||
lpt_mainbus_attach
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mainbus.c,v 1.9 2002/09/27 03:17:42 thorpej Exp $ */
|
||||
/* $NetBSD: mainbus.c,v 1.10 2002/09/27 20:29:20 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -70,7 +70,7 @@
|
|||
int mainbus_match(struct device *, struct cfdata *, void *);
|
||||
void mainbus_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach mainbus_ca = {
|
||||
const struct cfattach mainbus_ca = {
|
||||
sizeof(struct device), mainbus_match, mainbus_attach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcclock_mainbus.c,v 1.2 2002/09/27 02:24:07 thorpej Exp $ */
|
||||
/* $NetBSD: mcclock_mainbus.c,v 1.3 2002/09/27 20:29:20 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_mainbus.c,v 1.2 2002/09/27 02:24:07 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_mainbus.c,v 1.3 2002/09/27 20:29:20 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -54,7 +54,7 @@ struct mcclock_mainbus_softc {
|
|||
int mcclock_mainbus_match(struct device *, struct cfdata *, void *);
|
||||
void mcclock_mainbus_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach mcclock_mainbus_ca = {
|
||||
const struct cfattach mcclock_mainbus_ca = {
|
||||
sizeof (struct mcclock_mainbus_softc), mcclock_mainbus_match,
|
||||
mcclock_mainbus_attach,
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: vtpbc_mainbus.c,v 1.6 2002/05/16 01:01:30 thorpej Exp $ */
|
||||
/* $NetBSD: vtpbc_mainbus.c,v 1.7 2002/09/27 20:29:20 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -66,7 +66,7 @@ struct vtpbc_softc {
|
|||
int vtpbc_mainbus_match(struct device *, struct cfdata *, void *);
|
||||
void vtpbc_mainbus_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach vtpbc_mainbus_ca = {
|
||||
const struct cfattach vtpbc_mainbus_ca = {
|
||||
sizeof(struct vtpbc_softc), vtpbc_mainbus_match, vtpbc_mainbus_attach,
|
||||
};
|
||||
extern struct cfdriver vtpbc_cd;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcclock_isa.c,v 1.2 2002/01/07 21:46:56 thorpej Exp $ */
|
||||
/* $NetBSD: mcclock_isa.c,v 1.3 2002/09/27 20:29:20 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_isa.c,v 1.2 2002/01/07 21:46:56 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_isa.c,v 1.3 2002/09/27 20:29:20 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -57,7 +57,7 @@ struct mcclock_isa_softc {
|
|||
int mcclock_isa_match(struct device *, struct cfdata *, void *);
|
||||
void mcclock_isa_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach mcclock_isa_ca = {
|
||||
const struct cfattach mcclock_isa_ca = {
|
||||
sizeof (struct mcclock_isa_softc), mcclock_isa_match,
|
||||
mcclock_isa_attach,
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pcib.c,v 1.9 2001/06/22 06:02:55 thorpej Exp $ */
|
||||
/* $NetBSD: pcib.c,v 1.10 2002/09/27 20:29:21 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.9 2001/06/22 06:02:55 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.10 2002/09/27 20:29:21 thorpej Exp $");
|
||||
|
||||
#include "opt_algor_p5064.h"
|
||||
#include "opt_algor_p6032.h"
|
||||
|
@ -121,7 +121,7 @@ struct pcib_softc {
|
|||
int pcib_match(struct device *, struct cfdata *, void *);
|
||||
void pcib_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach pcib_ca = {
|
||||
const struct cfattach pcib_ca = {
|
||||
sizeof(struct pcib_softc), pcib_match, pcib_attach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: a12dc.c,v 1.7 2002/09/06 13:18:43 gehenna Exp $ */
|
||||
/* $NetBSD: a12dc.c,v 1.8 2002/09/27 20:29:22 thorpej Exp $ */
|
||||
|
||||
/* [Notice revision 2.2]
|
||||
* Copyright (c) 1997, 1998 Avalon Computer Systems, Inc.
|
||||
|
@ -64,7 +64,7 @@
|
|||
#ifndef BSIDE
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: a12dc.c,v 1.7 2002/09/06 13:18:43 gehenna Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: a12dc.c,v 1.8 2002/09/27 20:29:22 thorpej Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
|
@ -101,7 +101,7 @@ struct a12dc_softc {
|
|||
struct device sc_dev;
|
||||
} a12dc_softc;
|
||||
|
||||
struct cfattach a12dc_ca = {
|
||||
const struct cfattach a12dc_ca = {
|
||||
sizeof(struct a12dc_softc), a12dcmatch, a12dcattach,
|
||||
};
|
||||
|
||||
|
@ -165,7 +165,7 @@ a12dcattach(parent, self, aux)
|
|||
/* note that we've attached the chipset; can't have 2 A12Cs. */
|
||||
a12dcfound = 1;
|
||||
|
||||
printf(": driver %s\n", "$Revision: 1.7 $");
|
||||
printf(": driver %s\n", "$Revision: 1.8 $");
|
||||
|
||||
tp = a12dc_tty[0] = ttymalloc();
|
||||
tp->t_oproc = a12dcstart;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ade.c,v 1.15 2002/09/27 15:35:32 provos Exp $ */
|
||||
/* $NetBSD: if_ade.c,v 1.16 2002/09/27 20:29:22 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* NOTE: this version of if_de was modified for bounce buffers prior
|
||||
|
@ -4975,7 +4975,7 @@ tulip_pci_probe(
|
|||
|
||||
static void tulip_pci_attach(TULIP_PCI_ATTACH_ARGS);
|
||||
|
||||
struct cfattach ade_ca = {
|
||||
const struct cfattach ade_ca = {
|
||||
sizeof(tulip_softc_t), tulip_pci_probe, tulip_pci_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_adevar.h,v 1.2 2001/06/13 10:46:00 wiz Exp $ */
|
||||
/* $NetBSD: if_adevar.h,v 1.3 2002/09/27 20:29:24 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* NOTE: this version of if_de was modified for bounce buffers prior
|
||||
|
@ -899,7 +899,7 @@ arp_ifinit(
|
|||
#if defined(__NetBSD__)
|
||||
typedef void ifnet_ret_t;
|
||||
typedef u_long ioctl_cmd_t;
|
||||
extern struct cfattach ade_ca;
|
||||
extern const struct cfattach ade_ca;
|
||||
extern struct cfdriver ade_cd;
|
||||
#define TULIP_UNIT_TO_SOFTC(unit) ((tulip_softc_t *) ade_cd.cd_devs[unit])
|
||||
#define TULIP_IFP_TO_SOFTC(ifp) ((tulip_softc_t *)((ifp)->if_softc))
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_xb.c,v 1.9 2001/08/20 12:20:04 wiz Exp $ */
|
||||
/* $NetBSD: if_xb.c,v 1.10 2002/09/27 20:29:24 thorpej Exp $ */
|
||||
|
||||
/* [Notice revision 2.2]
|
||||
* Copyright (c) 1997, 1998 Avalon Computer Systems, Inc.
|
||||
|
@ -74,7 +74,7 @@
|
|||
#include "opt_avalon_a12.h" /* Config options headers */
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_xb.c,v 1.9 2001/08/20 12:20:04 wiz Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: if_xb.c,v 1.10 2002/09/27 20:29:24 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -140,7 +140,7 @@ struct xb_softc {
|
|||
struct device d;
|
||||
} xb_softc;
|
||||
|
||||
struct cfattach xb_ca = {
|
||||
const struct cfattach xb_ca = {
|
||||
sizeof(struct xb_softc), xbmatch, xbattach,
|
||||
};
|
||||
|
||||
|
@ -234,7 +234,7 @@ xbattach(parent, self, aux)
|
|||
xbfound = 1;
|
||||
ccp = &xb_configuration;
|
||||
xb_init_config(ccp, 1);
|
||||
printf(": driver %s mtu %d\n", "$Revision: 1.9 $", xbi.if_mtu);
|
||||
printf(": driver %s mtu %d\n", "$Revision: 1.10 $", xbi.if_mtu);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cpu.c,v 1.66 2002/07/25 15:39:41 he Exp $ */
|
||||
/* $NetBSD: cpu.c,v 1.67 2002/09/27 20:29:25 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -66,7 +66,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.66 2002/07/25 15:39:41 he Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.67 2002/09/27 20:29:25 thorpej Exp $");
|
||||
|
||||
#include "opt_ddb.h"
|
||||
#include "opt_multiprocessor.h"
|
||||
|
@ -120,7 +120,7 @@ u_long cpu_implver, cpu_amask;
|
|||
static int cpumatch(struct device *, struct cfdata *, void *);
|
||||
static void cpuattach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach cpu_ca = {
|
||||
const struct cfattach cpu_ca = {
|
||||
sizeof(struct cpu_softc), cpumatch, cpuattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mainbus.c,v 1.28 2002/09/06 13:18:43 gehenna Exp $ */
|
||||
/* $NetBSD: mainbus.c,v 1.29 2002/09/27 20:29:26 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.28 2002/09/06 13:18:43 gehenna Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.29 2002/09/27 20:29:26 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -46,7 +46,7 @@ static int mbmatch __P((struct device *, struct cfdata *, void *));
|
|||
static void mbattach __P((struct device *, struct device *, void *));
|
||||
static int mbprint __P((void *, const char *));
|
||||
|
||||
struct cfattach mainbus_ca = {
|
||||
const struct cfattach mainbus_ca = {
|
||||
sizeof(struct device), mbmatch, mbattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: isa_machdep.c,v 1.13 2000/06/29 09:02:57 mrg Exp $ */
|
||||
/* $NetBSD: isa_machdep.c,v 1.14 2002/09/27 20:29:27 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -33,7 +33,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.13 2000/06/29 09:02:57 mrg Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.14 2002/09/27 20:29:27 thorpej Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
|
@ -60,7 +60,7 @@ __KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.13 2000/06/29 09:02:57 mrg Exp $")
|
|||
int isabeepmatch __P((struct device *, struct cfdata *, void *));
|
||||
void isabeepattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach isabeep_ca = {
|
||||
const struct cfattach isabeep_ca = {
|
||||
sizeof(struct device), isabeepmatch, isabeepattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcclock_isa.c,v 1.11 2002/01/07 21:46:57 thorpej Exp $ */
|
||||
/* $NetBSD: mcclock_isa.c,v 1.12 2002/09/27 20:29:27 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_isa.c,v 1.11 2002/01/07 21:46:57 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_isa.c,v 1.12 2002/09/27 20:29:27 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -53,7 +53,7 @@ struct mcclock_isa_softc {
|
|||
int mcclock_isa_match __P((struct device *, struct cfdata *, void *));
|
||||
void mcclock_isa_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach mcclock_isa_ca = {
|
||||
const struct cfattach mcclock_isa_ca = {
|
||||
sizeof (struct mcclock_isa_softc), mcclock_isa_match,
|
||||
mcclock_isa_attach,
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_jensenio.c,v 1.3 2002/09/27 02:24:08 thorpej Exp $ */
|
||||
/* $NetBSD: com_jensenio.c,v 1.4 2002/09/27 20:29:28 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_jensenio.c,v 1.3 2002/09/27 02:24:08 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_jensenio.c,v 1.4 2002/09/27 20:29:28 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -79,7 +79,7 @@ int com_jensenio_match(struct device *, struct cfdata *, void *);
|
|||
void com_jensenio_attach(struct device *, struct device *, void *);
|
||||
void com_jensenio_cleanup(void *);
|
||||
|
||||
struct cfattach com_jensenio_ca = {
|
||||
const struct cfattach com_jensenio_ca = {
|
||||
sizeof(struct com_jensenio_softc), com_jensenio_match,
|
||||
com_jensenio_attach
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: jensenio.c,v 1.5 2002/09/27 03:17:43 thorpej Exp $ */
|
||||
/* $NetBSD: jensenio.c,v 1.6 2002/09/27 20:29:28 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -50,7 +50,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: jensenio.c,v 1.5 2002/09/27 03:17:43 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: jensenio.c,v 1.6 2002/09/27 20:29:28 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -87,7 +87,7 @@ const struct jensenio_dev {
|
|||
int jensenio_match(struct device *, struct cfdata *, void *);
|
||||
void jensenio_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach jensenio_ca = {
|
||||
const struct cfattach jensenio_ca = {
|
||||
sizeof(struct device), jensenio_match, jensenio_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: lpt_jensenio.c,v 1.3 2002/09/27 02:24:08 thorpej Exp $ */
|
||||
/* $NetBSD: lpt_jensenio.c,v 1.4 2002/09/27 20:29:29 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_jensenio.c,v 1.3 2002/09/27 02:24:08 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_jensenio.c,v 1.4 2002/09/27 20:29:29 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -78,7 +78,7 @@ struct lpt_jensenio_softc {
|
|||
int lpt_jensenio_match(struct device *, struct cfdata *, void *);
|
||||
void lpt_jensenio_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach lpt_jensenio_ca = {
|
||||
const struct cfattach lpt_jensenio_ca = {
|
||||
sizeof(struct lpt_jensenio_softc), lpt_jensenio_match,
|
||||
lpt_jensenio_attach
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcclock_jensenio.c,v 1.2 2002/09/27 02:24:08 thorpej Exp $ */
|
||||
/* $NetBSD: mcclock_jensenio.c,v 1.3 2002/09/27 20:29:29 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -65,7 +65,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_jensenio.c,v 1.2 2002/09/27 02:24:08 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_jensenio.c,v 1.3 2002/09/27 20:29:29 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -93,7 +93,7 @@ struct mcclock_jensenio_softc {
|
|||
int mcclock_jensenio_match(struct device *, struct cfdata *, void *);
|
||||
void mcclock_jensenio_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach mcclock_jensenio_ca = {
|
||||
const struct cfattach mcclock_jensenio_ca = {
|
||||
sizeof (struct mcclock_jensenio_softc), mcclock_jensenio_match,
|
||||
mcclock_jensenio_attach,
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pckbc_jensenio.c,v 1.4 2002/09/27 02:24:08 thorpej Exp $ */
|
||||
/* $NetBSD: pckbc_jensenio.c,v 1.5 2002/09/27 20:29:29 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: pckbc_jensenio.c,v 1.4 2002/09/27 02:24:08 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pckbc_jensenio.c,v 1.5 2002/09/27 20:29:29 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -79,7 +79,7 @@ struct pckbc_jensenio_softc {
|
|||
int pckbc_jensenio_match(struct device *, struct cfdata *, void *);
|
||||
void pckbc_jensenio_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach pckbc_jensenio_ca = {
|
||||
const struct cfattach pckbc_jensenio_ca = {
|
||||
sizeof(struct pckbc_jensenio_softc),
|
||||
pckbc_jensenio_match, pckbc_jensenio_attach
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcbus.c,v 1.10 2002/09/27 03:17:43 thorpej Exp $ */
|
||||
/* $NetBSD: mcbus.c,v 1.11 2002/09/27 20:29:30 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 by Matthew Jacob
|
||||
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcbus.c,v 1.10 2002/09/27 03:17:43 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcbus.c,v 1.11 2002/09/27 20:29:30 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -74,7 +74,7 @@ typedef struct {
|
|||
u_int8_t mcbus_types[MCBUS_MID_MAX];
|
||||
} mcbus_softc_t;
|
||||
|
||||
struct cfattach mcbus_ca = {
|
||||
const struct cfattach mcbus_ca = {
|
||||
sizeof (mcbus_softc_t), mcbusmatch, mcbusattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcmem.c,v 1.2 1998/04/15 20:40:34 mjacob Exp $ */
|
||||
/* $NetBSD: mcmem.c,v 1.3 2002/09/27 20:29:31 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 by Matthew Jacob
|
||||
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcmem.c,v 1.2 1998/04/15 20:40:34 mjacob Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcmem.c,v 1.3 2002/09/27 20:29:31 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -53,7 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: mcmem.c,v 1.2 1998/04/15 20:40:34 mjacob Exp $");
|
|||
|
||||
static int mcmemmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void mcmemattach __P((struct device *, struct device *, void *));
|
||||
struct cfattach mcmem_ca = {
|
||||
const struct cfattach mcmem_ca = {
|
||||
sizeof (struct device), mcmemmatch, mcmemattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: a12c.c,v 1.10 2002/05/16 01:01:31 thorpej Exp $ */
|
||||
/* $NetBSD: a12c.c,v 1.11 2002/09/27 20:29:31 thorpej Exp $ */
|
||||
|
||||
/* [Notice revision 2.2]
|
||||
* Copyright (c) 1997, 1998 Avalon Computer Systems, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
#include "opt_avalon_a12.h" /* Config options headers */
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: a12c.c,v 1.10 2002/05/16 01:01:31 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: a12c.c,v 1.11 2002/09/27 20:29:31 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -66,7 +66,7 @@ __KERNEL_RCSID(0, "$NetBSD: a12c.c,v 1.10 2002/05/16 01:01:31 thorpej Exp $");
|
|||
int a12cmatch __P((struct device *, struct cfdata *, void *));
|
||||
void a12cattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach a12c_ca = {
|
||||
const struct cfattach a12c_ca = {
|
||||
sizeof(struct a12c_softc), a12cmatch, a12cattach,
|
||||
};
|
||||
|
||||
|
@ -144,7 +144,7 @@ a12cattach(parent, self, aux)
|
|||
a12c_init(ccp, 1);
|
||||
|
||||
/* XXX print chipset information */
|
||||
printf(": driver %s over logic %x\n", "$Revision: 1.10 $",
|
||||
printf(": driver %s over logic %x\n", "$Revision: 1.11 $",
|
||||
A12_ALL_EXTRACT(REGVAL(A12_VERS)));
|
||||
|
||||
pci_a12_pickintr(ccp);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: apecs.c,v 1.39 2002/05/16 01:01:31 thorpej Exp $ */
|
||||
/* $NetBSD: apecs.c,v 1.40 2002/09/27 20:29:32 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -70,7 +70,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: apecs.c,v 1.39 2002/05/16 01:01:31 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: apecs.c,v 1.40 2002/09/27 20:29:32 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -107,7 +107,7 @@ __KERNEL_RCSID(0, "$NetBSD: apecs.c,v 1.39 2002/05/16 01:01:31 thorpej Exp $");
|
|||
int apecsmatch __P((struct device *, struct cfdata *, void *));
|
||||
void apecsattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach apecs_ca = {
|
||||
const struct cfattach apecs_ca = {
|
||||
sizeof(struct apecs_softc), apecsmatch, apecsattach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cia.c,v 1.58 2002/05/16 01:01:31 thorpej Exp $ */
|
||||
/* $NetBSD: cia.c,v 1.59 2002/09/27 20:29:32 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -72,7 +72,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.58 2002/05/16 01:01:31 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.59 2002/09/27 20:29:32 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -114,7 +114,7 @@ __KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.58 2002/05/16 01:01:31 thorpej Exp $");
|
|||
int ciamatch __P((struct device *, struct cfdata *, void *));
|
||||
void ciaattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach cia_ca = {
|
||||
const struct cfattach cia_ca = {
|
||||
sizeof(struct cia_softc), ciamatch, ciaattach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dwlpx.c,v 1.24 2002/05/16 01:01:31 thorpej Exp $ */
|
||||
/* $NetBSD: dwlpx.c,v 1.25 2002/09/27 20:29:33 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 by Matthew Jacob
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: dwlpx.c,v 1.24 2002/05/16 01:01:31 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: dwlpx.c,v 1.25 2002/09/27 20:29:33 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -62,7 +62,7 @@ __KERNEL_RCSID(0, "$NetBSD: dwlpx.c,v 1.24 2002/05/16 01:01:31 thorpej Exp $");
|
|||
|
||||
static int dwlpxmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void dwlpxattach __P((struct device *, struct device *, void *));
|
||||
struct cfattach dwlpx_ca = {
|
||||
const struct cfattach dwlpx_ca = {
|
||||
sizeof(struct dwlpx_softc), dwlpxmatch, dwlpxattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: irongate.c,v 1.7 2002/05/16 01:01:32 thorpej Exp $ */
|
||||
/* $NetBSD: irongate.c,v 1.8 2002/09/27 20:29:33 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: irongate.c,v 1.7 2002/05/16 01:01:32 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: irongate.c,v 1.8 2002/09/27 20:29:33 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -67,7 +67,7 @@ __KERNEL_RCSID(0, "$NetBSD: irongate.c,v 1.7 2002/05/16 01:01:32 thorpej Exp $")
|
|||
int irongate_match(struct device *, struct cfdata *, void *);
|
||||
void irongate_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach irongate_ca = {
|
||||
const struct cfattach irongate_ca = {
|
||||
sizeof(struct irongate_softc), irongate_match, irongate_attach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: lca.c,v 1.37 2002/05/16 01:01:32 thorpej Exp $ */
|
||||
/* $NetBSD: lca.c,v 1.38 2002/09/27 20:29:34 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -69,7 +69,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: lca.c,v 1.37 2002/05/16 01:01:32 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: lca.c,v 1.38 2002/09/27 20:29:34 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -103,7 +103,7 @@ __KERNEL_RCSID(0, "$NetBSD: lca.c,v 1.37 2002/05/16 01:01:32 thorpej Exp $");
|
|||
int lcamatch __P((struct device *, struct cfdata *, void *));
|
||||
void lcaattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach lca_ca = {
|
||||
const struct cfattach lca_ca = {
|
||||
sizeof(struct lca_softc), lcamatch, lcaattach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcpcia.c,v 1.13 2002/05/16 01:01:32 thorpej Exp $ */
|
||||
/* $NetBSD: mcpcia.c,v 1.14 2002/09/27 20:29:34 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -74,7 +74,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcpcia.c,v 1.13 2002/05/16 01:01:32 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcpcia.c,v 1.14 2002/09/27 20:29:34 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -105,7 +105,7 @@ __KERNEL_RCSID(0, "$NetBSD: mcpcia.c,v 1.13 2002/05/16 01:01:32 thorpej Exp $");
|
|||
|
||||
static int mcpciamatch __P((struct device *, struct cfdata *, void *));
|
||||
static void mcpciaattach __P((struct device *, struct device *, void *));
|
||||
struct cfattach mcpcia_ca = {
|
||||
const struct cfattach mcpcia_ca = {
|
||||
sizeof(struct mcpcia_softc), mcpciamatch, mcpciaattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: sio.c,v 1.33 2000/07/29 23:18:47 thorpej Exp $ */
|
||||
/* $NetBSD: sio.c,v 1.34 2002/09/27 20:29:35 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -69,7 +69,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.33 2000/07/29 23:18:47 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.34 2002/09/27 20:29:35 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -112,13 +112,13 @@ struct sio_softc {
|
|||
int siomatch __P((struct device *, struct cfdata *, void *));
|
||||
void sioattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach sio_ca = {
|
||||
const struct cfattach sio_ca = {
|
||||
sizeof(struct sio_softc), siomatch, sioattach,
|
||||
};
|
||||
|
||||
int pcebmatch __P((struct device *, struct cfdata *, void *));
|
||||
|
||||
struct cfattach pceb_ca = {
|
||||
const struct cfattach pceb_ca = {
|
||||
sizeof(struct sio_softc), pcebmatch, sioattach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: tsc.c,v 1.7 2002/05/16 01:01:32 thorpej Exp $ */
|
||||
/* $NetBSD: tsc.c,v 1.8 2002/09/27 20:29:36 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 by Ross Harvey. All rights reserved.
|
||||
|
@ -35,7 +35,7 @@
|
|||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: tsc.c,v 1.7 2002/05/16 01:01:32 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: tsc.c,v 1.8 2002/09/27 20:29:36 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -62,7 +62,7 @@ __KERNEL_RCSID(0, "$NetBSD: tsc.c,v 1.7 2002/05/16 01:01:32 thorpej Exp $");
|
|||
int tscmatch __P((struct device *, struct cfdata *, void *));
|
||||
void tscattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach tsc_ca = {
|
||||
const struct cfattach tsc_ca = {
|
||||
sizeof(struct tsc_softc), tscmatch, tscattach,
|
||||
};
|
||||
|
||||
|
@ -75,7 +75,7 @@ static int tscprint __P((void *, const char *pnp));
|
|||
int tspmatch __P((struct device *, struct cfdata *, void *));
|
||||
void tspattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach tsp_ca = {
|
||||
const struct cfattach tsp_ca = {
|
||||
sizeof(struct tsp_softc), tspmatch, tspattach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ttwoga.c,v 1.3 2002/09/27 02:24:09 thorpej Exp $ */
|
||||
/* $NetBSD: ttwoga.c,v 1.4 2002/09/27 20:29:36 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -41,7 +41,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: ttwoga.c,v 1.3 2002/09/27 02:24:09 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ttwoga.c,v 1.4 2002/09/27 20:29:36 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -70,7 +70,7 @@ __KERNEL_RCSID(0, "$NetBSD: ttwoga.c,v 1.3 2002/09/27 02:24:09 thorpej Exp $");
|
|||
int ttwogamatch(struct device *, struct cfdata *, void *);
|
||||
void ttwogaattach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach ttwoga_ca = {
|
||||
const struct cfattach ttwoga_ca = {
|
||||
sizeof(struct device), ttwogamatch, ttwogaattach
|
||||
};
|
||||
|
||||
|
@ -79,7 +79,7 @@ int ttwogaprint(void *, const char *);
|
|||
int ttwopcimatch(struct device *, struct cfdata *, void *);
|
||||
void ttwopciattach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach ttwopci_ca = {
|
||||
const struct cfattach ttwopci_ca = {
|
||||
sizeof(struct device), ttwopcimatch, ttwopciattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_sableio.c,v 1.2 2002/09/27 02:24:09 thorpej Exp $ */
|
||||
/* $NetBSD: com_sableio.c,v 1.3 2002/09/27 20:29:37 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_sableio.c,v 1.2 2002/09/27 02:24:09 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_sableio.c,v 1.3 2002/09/27 20:29:37 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -77,7 +77,7 @@ int com_sableio_match(struct device *, struct cfdata *, void *);
|
|||
void com_sableio_attach(struct device *, struct device *, void *);
|
||||
void com_sableio_cleanup(void *);
|
||||
|
||||
struct cfattach com_sableio_ca = {
|
||||
const struct cfattach com_sableio_ca = {
|
||||
sizeof(struct com_sableio_softc), com_sableio_match, com_sableio_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fdc_sableio.c,v 1.2 2002/09/27 02:24:09 thorpej Exp $ */
|
||||
/* $NetBSD: fdc_sableio.c,v 1.3 2002/09/27 20:29:37 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: fdc_sableio.c,v 1.2 2002/09/27 02:24:09 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: fdc_sableio.c,v 1.3 2002/09/27 20:29:37 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -71,7 +71,7 @@ struct fdc_sableio_softc {
|
|||
bus_space_handle_t sc_baseioh; /* base I/O handle */
|
||||
};
|
||||
|
||||
struct cfattach fdc_sableio_ca = {
|
||||
const struct cfattach fdc_sableio_ca = {
|
||||
sizeof(struct fdc_sableio_softc), fdc_sableio_match, fdc_sableio_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: lpt_sableio.c,v 1.2 2002/09/27 02:24:09 thorpej Exp $ */
|
||||
/* $NetBSD: lpt_sableio.c,v 1.3 2002/09/27 20:29:37 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_sableio.c,v 1.2 2002/09/27 02:24:09 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: lpt_sableio.c,v 1.3 2002/09/27 20:29:37 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -76,7 +76,7 @@ struct lpt_sableio_softc {
|
|||
int lpt_sableio_match(struct device *, struct cfdata *, void *);
|
||||
void lpt_sableio_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach lpt_sableio_ca = {
|
||||
const struct cfattach lpt_sableio_ca = {
|
||||
sizeof(struct lpt_sableio_softc), lpt_sableio_match, lpt_sableio_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pckbc_sableio.c,v 1.3 2002/09/27 02:24:09 thorpej Exp $ */
|
||||
/* $NetBSD: pckbc_sableio.c,v 1.4 2002/09/27 20:29:37 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: pckbc_sableio.c,v 1.3 2002/09/27 02:24:09 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pckbc_sableio.c,v 1.4 2002/09/27 20:29:37 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -73,7 +73,7 @@ struct pckbc_sableio_softc {
|
|||
int pckbc_sableio_match(struct device *, struct cfdata *, void *);
|
||||
void pckbc_sableio_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach pckbc_sableio_ca = {
|
||||
const struct cfattach pckbc_sableio_ca = {
|
||||
sizeof(struct pckbc_sableio_softc),
|
||||
pckbc_sableio_match, pckbc_sableio_attach
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: sableio.c,v 1.3 2002/09/27 03:17:43 thorpej Exp $ */
|
||||
/* $NetBSD: sableio.c,v 1.4 2002/09/27 20:29:38 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -55,7 +55,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: sableio.c,v 1.3 2002/09/27 03:17:43 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: sableio.c,v 1.4 2002/09/27 20:29:38 thorpej Exp $");
|
||||
|
||||
#include "isadma.h"
|
||||
|
||||
|
@ -105,7 +105,7 @@ struct sableio_softc {
|
|||
int sableio_match(struct device *, struct cfdata *, void *);
|
||||
void sableio_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach sableio_ca = {
|
||||
const struct cfattach sableio_ca = {
|
||||
sizeof(struct sableio_softc), sableio_match, sableio_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ioasic.c,v 1.35 2002/09/27 15:35:39 provos Exp $ */
|
||||
/* $NetBSD: ioasic.c,v 1.36 2002/09/27 20:29:38 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -68,7 +68,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: ioasic.c,v 1.35 2002/09/27 15:35:39 provos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ioasic.c,v 1.36 2002/09/27 20:29:38 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -89,7 +89,7 @@ __KERNEL_RCSID(0, "$NetBSD: ioasic.c,v 1.35 2002/09/27 15:35:39 provos Exp $");
|
|||
int ioasicmatch __P((struct device *, struct cfdata *, void *));
|
||||
void ioasicattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach ioasic_ca = {
|
||||
const struct cfattach ioasic_ca = {
|
||||
sizeof(struct ioasic_softc), ioasicmatch, ioasicattach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcclock_ioasic.c,v 1.9 2000/07/04 02:37:51 nisimura Exp $ */
|
||||
/* $NetBSD: mcclock_ioasic.c,v 1.10 2002/09/27 20:29:39 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_ioasic.c,v 1.9 2000/07/04 02:37:51 nisimura Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_ioasic.c,v 1.10 2002/09/27 20:29:39 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -56,7 +56,7 @@ struct mcclock_ioasic_softc {
|
|||
int mcclock_ioasic_match __P((struct device *, struct cfdata *, void *));
|
||||
void mcclock_ioasic_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach mcclock_ioasic_ca = {
|
||||
const struct cfattach mcclock_ioasic_ca = {
|
||||
sizeof (struct mcclock_ioasic_softc), mcclock_ioasic_match,
|
||||
mcclock_ioasic_attach,
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: tcasic.c,v 1.36 2001/08/23 01:16:52 nisimura Exp $ */
|
||||
/* $NetBSD: tcasic.c,v 1.37 2002/09/27 20:29:39 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: tcasic.c,v 1.36 2001/08/23 01:16:52 nisimura Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: tcasic.c,v 1.37 2002/09/27 20:29:39 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -49,7 +49,7 @@ __KERNEL_RCSID(0, "$NetBSD: tcasic.c,v 1.36 2001/08/23 01:16:52 nisimura Exp $")
|
|||
int tcasicmatch(struct device *, struct cfdata *, void *);
|
||||
void tcasicattach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach tcasic_ca = {
|
||||
const struct cfattach tcasic_ca = {
|
||||
sizeof (struct device), tcasicmatch, tcasicattach,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: gbus.c,v 1.11 2002/09/27 03:17:44 thorpej Exp $ */
|
||||
/* $NetBSD: gbus.c,v 1.12 2002/09/27 20:29:40 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 by Matthew Jacob
|
||||
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: gbus.c,v 1.11 2002/09/27 03:17:44 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: gbus.c,v 1.12 2002/09/27 20:29:40 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -64,7 +64,7 @@ struct gbus_softc {
|
|||
static int gbusmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void gbusattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach gbus_ca = {
|
||||
const struct cfattach gbus_ca = {
|
||||
sizeof(struct gbus_softc), gbusmatch, gbusattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: kftxx.c,v 1.9 1998/05/14 00:01:32 thorpej Exp $ */
|
||||
/* $NetBSD: kftxx.c,v 1.10 2002/09/27 20:29:40 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 by Matthew Jacob
|
||||
|
@ -39,7 +39,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: kftxx.c,v 1.9 1998/05/14 00:01:32 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: kftxx.c,v 1.10 2002/09/27 20:29:40 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -66,7 +66,7 @@ struct kft_softc {
|
|||
|
||||
static int kftmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void kftattach __P((struct device *, struct device *, void *));
|
||||
struct cfattach kft_ca = {
|
||||
const struct cfattach kft_ca = {
|
||||
sizeof(struct kft_softc), kftmatch, kftattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcclock_tlsb.c,v 1.8 1998/05/13 02:50:29 thorpej Exp $ */
|
||||
/* $NetBSD: mcclock_tlsb.c,v 1.9 2002/09/27 20:29:40 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 by Matthew Jacob
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_tlsb.c,v 1.8 1998/05/13 02:50:29 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_tlsb.c,v 1.9 2002/09/27 20:29:40 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -64,7 +64,7 @@ struct mcclock_tlsb_softc {
|
|||
int mcclock_tlsb_match __P((struct device *, struct cfdata *, void *));
|
||||
void mcclock_tlsb_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach mcclock_tlsb_ca = {
|
||||
const struct cfattach mcclock_tlsb_ca = {
|
||||
sizeof (struct mcclock_tlsb_softc),
|
||||
mcclock_tlsb_match,
|
||||
mcclock_tlsb_attach,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: tlsb.c,v 1.23 2002/09/27 03:17:44 thorpej Exp $ */
|
||||
/* $NetBSD: tlsb.c,v 1.24 2002/09/27 20:29:41 thorpej Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1997 by Matthew Jacob
|
||||
* NASA AMES Research Center.
|
||||
|
@ -39,7 +39,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: tlsb.c,v 1.23 2002/09/27 03:17:44 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: tlsb.c,v 1.24 2002/09/27 20:29:41 thorpej Exp $");
|
||||
|
||||
#include "opt_multiprocessor.h"
|
||||
|
||||
|
@ -65,7 +65,7 @@ __KERNEL_RCSID(0, "$NetBSD: tlsb.c,v 1.23 2002/09/27 03:17:44 thorpej Exp $");
|
|||
static int tlsbmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void tlsbattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach tlsb_ca = {
|
||||
const struct cfattach tlsb_ca = {
|
||||
sizeof (struct device), tlsbmatch, tlsbattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: tlsbmem.c,v 1.6 1998/01/12 10:21:25 thorpej Exp $ */
|
||||
/* $NetBSD: tlsbmem.c,v 1.7 2002/09/27 20:29:41 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 by Matthew Jacob
|
||||
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: tlsbmem.c,v 1.6 1998/01/12 10:21:25 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: tlsbmem.c,v 1.7 2002/09/27 20:29:41 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -59,7 +59,7 @@ struct tlsbmem_softc {
|
|||
|
||||
static int tlsbmemmatch __P((struct device *, struct cfdata *, void *));
|
||||
static void tlsbmemattach __P((struct device *, struct device *, void *));
|
||||
struct cfattach tlsbmem_ca = {
|
||||
const struct cfattach tlsbmem_ca = {
|
||||
sizeof (struct tlsbmem_softc), tlsbmemmatch, tlsbmemattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: autoconf.c,v 1.82 2002/09/06 13:18:43 gehenna Exp $ */
|
||||
/* $NetBSD: autoconf.c,v 1.83 2002/09/27 20:29:42 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -31,7 +31,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.82 2002/09/06 13:18:43 gehenna Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.83 2002/09/27 20:29:42 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -223,7 +223,7 @@ config_console()
|
|||
/*
|
||||
* mainbus driver
|
||||
*/
|
||||
struct cfattach mainbus_ca = {
|
||||
const struct cfattach mainbus_ca = {
|
||||
sizeof(struct device), mbmatch, mbattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: a2kbbc.c,v 1.12 2002/01/28 09:56:50 aymeric Exp $ */
|
||||
/* $NetBSD: a2kbbc.c,v 1.13 2002/09/27 20:29:43 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988 University of Utah.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: a2kbbc.c,v 1.12 2002/01/28 09:56:50 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: a2kbbc.c,v 1.13 2002/09/27 20:29:43 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -62,7 +62,7 @@ __KERNEL_RCSID(0, "$NetBSD: a2kbbc.c,v 1.12 2002/01/28 09:56:50 aymeric Exp $");
|
|||
int a2kbbc_match(struct device *, struct cfdata *, void *);
|
||||
void a2kbbc_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach a2kbbc_ca = {
|
||||
const struct cfattach a2kbbc_ca = {
|
||||
sizeof(struct device), a2kbbc_match, a2kbbc_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: a34kbbc.c,v 1.10 2002/01/28 09:56:50 aymeric Exp $ */
|
||||
/* $NetBSD: a34kbbc.c,v 1.11 2002/09/27 20:29:44 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988 University of Utah.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: a34kbbc.c,v 1.10 2002/01/28 09:56:50 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: a34kbbc.c,v 1.11 2002/09/27 20:29:44 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -62,7 +62,7 @@ __KERNEL_RCSID(0, "$NetBSD: a34kbbc.c,v 1.10 2002/01/28 09:56:50 aymeric Exp $")
|
|||
int a34kbbc_match(struct device *, struct cfdata *, void *);
|
||||
void a34kbbc_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach a34kbbc_ca = {
|
||||
const struct cfattach a34kbbc_ca = {
|
||||
sizeof(struct device), a34kbbc_match, a34kbbc_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: afsc.c,v 1.29 2002/01/28 09:56:50 aymeric Exp $ */
|
||||
/* $NetBSD: afsc.c,v 1.30 2002/09/27 20:29:44 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Michael L. Hitch
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: afsc.c,v 1.29 2002/01/28 09:56:50 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: afsc.c,v 1.30 2002/09/27 20:29:44 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -66,11 +66,11 @@ void afsc_dump(void);
|
|||
#ifdef DEBUG
|
||||
#endif
|
||||
|
||||
struct cfattach afsc_ca = {
|
||||
const struct cfattach afsc_ca = {
|
||||
sizeof(struct siop_softc), afscmatch, afscattach
|
||||
};
|
||||
|
||||
struct cfattach aftsc_ca = {
|
||||
const struct cfattach aftsc_ca = {
|
||||
sizeof(struct siop_softc), afscmatch, afscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ahsc.c,v 1.29 2002/01/28 09:56:51 aymeric Exp $ */
|
||||
/* $NetBSD: ahsc.c,v 1.30 2002/09/27 20:29:45 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahsc.c,v 1.29 2002/01/28 09:56:51 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ahsc.c,v 1.30 2002/09/27 20:29:45 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -76,7 +76,7 @@ void ahsc_dump(void);
|
|||
int ahsc_dmadebug = 0;
|
||||
#endif
|
||||
|
||||
struct cfattach ahsc_ca = {
|
||||
const struct cfattach ahsc_ca = {
|
||||
sizeof(struct sbic_softc), ahscmatch, ahscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: amidisplaycc.c,v 1.8 2002/09/02 11:09:48 aymeric Exp $ */
|
||||
/* $NetBSD: amidisplaycc.c,v 1.9 2002/09/27 20:29:45 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 Jukka Andberg.
|
||||
|
@ -28,7 +28,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: amidisplaycc.c,v 1.8 2002/09/02 11:09:48 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: amidisplaycc.c,v 1.9 2002/09/27 20:29:45 thorpej Exp $");
|
||||
|
||||
/*
|
||||
* wscons interface to amiga custom chips. Contains the necessary functions
|
||||
|
@ -106,7 +106,7 @@ struct amidisplaycc_softc
|
|||
static int amidisplaycc_match(struct device *, struct cfdata *, void *);
|
||||
static void amidisplaycc_attach(struct device *, struct device *, void *);
|
||||
|
||||
struct cfattach amidisplaycc_ca = {
|
||||
const struct cfattach amidisplaycc_ca = {
|
||||
sizeof(struct amidisplaycc_softc),
|
||||
amidisplaycc_match,
|
||||
amidisplaycc_attach
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: aster.c,v 1.17 2002/09/06 13:18:43 gehenna Exp $ */
|
||||
/* $NetBSD: aster.c,v 1.18 2002/09/27 20:29:47 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998,2001 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: aster.c,v 1.17 2002/09/06 13:18:43 gehenna Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: aster.c,v 1.18 2002/09/27 20:29:47 thorpej Exp $");
|
||||
|
||||
/*
|
||||
* zbus ISDN Blaster, ISDN Master driver.
|
||||
|
@ -70,7 +70,7 @@ int astermatch(struct device *, struct cfdata *, void *);
|
|||
void asterattach(struct device *, struct device *, void *);
|
||||
int asterprint(void *auxp, const char *);
|
||||
|
||||
struct cfattach aster_ca = {
|
||||
const struct cfattach aster_ca = {
|
||||
sizeof(struct aster_softc), astermatch, asterattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: atzsc.c,v 1.31 2002/01/28 09:56:51 aymeric Exp $ */
|
||||
/* $NetBSD: atzsc.c,v 1.32 2002/09/27 20:29:47 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Christian E. Hopps
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: atzsc.c,v 1.31 2002/01/28 09:56:51 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: atzsc.c,v 1.32 2002/09/27 20:29:47 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -73,7 +73,7 @@ void atzsc_dump(void);
|
|||
int atzsc_dmadebug = 0;
|
||||
#endif
|
||||
|
||||
struct cfattach atzsc_ca = {
|
||||
const struct cfattach atzsc_ca = {
|
||||
sizeof(struct sbic_softc), atzscmatch, atzscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: aucc.c,v 1.30 2002/01/28 09:56:51 aymeric Exp $ */
|
||||
/* $NetBSD: aucc.c,v 1.31 2002/09/27 20:29:48 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999 Bernardo Innocenti
|
||||
|
@ -53,7 +53,7 @@
|
|||
#if NAUCC > 0
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: aucc.c,v 1.30 2002/01/28 09:56:51 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: aucc.c,v 1.31 2002/09/27 20:29:48 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -136,7 +136,7 @@ static u_int pertofreq(u_int);
|
|||
void auccattach(struct device *, struct device *, void *);
|
||||
int auccmatch(struct device *, struct cfdata *, void *);
|
||||
|
||||
struct cfattach aucc_ca = {
|
||||
const struct cfattach aucc_ca = {
|
||||
sizeof(struct aucc_softc),
|
||||
auccmatch,
|
||||
auccattach
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bzivsc.c,v 1.12 2002/01/28 09:56:52 aymeric Exp $ */
|
||||
/* $NetBSD: bzivsc.c,v 1.13 2002/09/27 20:29:48 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Michael L. Hitch
|
||||
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: bzivsc.c,v 1.12 2002/01/28 09:56:52 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: bzivsc.c,v 1.13 2002/09/27 20:29:48 thorpej Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
|
@ -69,7 +69,7 @@ void bzivscattach(struct device *, struct device *, void *);
|
|||
int bzivscmatch(struct device *, struct cfdata *, void *);
|
||||
|
||||
/* Linkup to the rest of the kernel */
|
||||
struct cfattach bzivsc_ca = {
|
||||
const struct cfattach bzivsc_ca = {
|
||||
sizeof(struct bzivsc_softc), bzivscmatch, bzivscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bzsc.c,v 1.30 2002/01/28 09:56:52 aymeric Exp $ */
|
||||
/* $NetBSD: bzsc.c,v 1.31 2002/09/27 20:29:49 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Michael L. Hitch
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: bzsc.c,v 1.30 2002/01/28 09:56:52 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: bzsc.c,v 1.31 2002/09/27 20:29:49 thorpej Exp $");
|
||||
|
||||
/*
|
||||
* Initial amiga Blizzard 1230-II driver by Daniel Widenfalk. Conversion to
|
||||
|
@ -75,7 +75,7 @@ void bzscattach(struct device *, struct device *, void *);
|
|||
int bzscmatch(struct device *, struct cfdata *, void *);
|
||||
|
||||
/* Linkup to the rest of the kernel */
|
||||
struct cfattach bzsc_ca = {
|
||||
const struct cfattach bzsc_ca = {
|
||||
sizeof(struct bzsc_softc), bzscmatch, bzscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bztzsc.c,v 1.17 2002/01/28 09:56:52 aymeric Exp $ */
|
||||
/* $NetBSD: bztzsc.c,v 1.18 2002/09/27 20:29:49 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Michael L. Hitch
|
||||
|
@ -42,7 +42,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: bztzsc.c,v 1.17 2002/01/28 09:56:52 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: bztzsc.c,v 1.18 2002/09/27 20:29:49 thorpej Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
|
@ -75,7 +75,7 @@ void bztzscattach(struct device *, struct device *, void *);
|
|||
int bztzscmatch(struct device *, struct cfdata *, void *);
|
||||
|
||||
/* Linkup to the rest of the kernel */
|
||||
struct cfattach bztzsc_ca = {
|
||||
const struct cfattach bztzsc_ca = {
|
||||
sizeof(struct bztzsc_softc), bztzscmatch, bztzscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cbiiisc.c,v 1.8 2002/01/28 09:56:52 aymeric Exp $ */
|
||||
/* $NetBSD: cbiiisc.c,v 1.9 2002/09/27 20:29:50 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994,1998 Michael L. Hitch
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: cbiiisc.c,v 1.8 2002/01/28 09:56:52 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cbiiisc.c,v 1.9 2002/09/27 20:29:50 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -67,7 +67,7 @@ void cbiiisc_dump(void);
|
|||
#ifdef DEBUG
|
||||
#endif
|
||||
|
||||
struct cfattach cbiiisc_ca = {
|
||||
const struct cfattach cbiiisc_ca = {
|
||||
sizeof(struct siop_softc), cbiiiscmatch, cbiiiscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cbiisc.c,v 1.13 2002/01/28 09:56:53 aymeric Exp $ */
|
||||
/* $NetBSD: cbiisc.c,v 1.14 2002/09/27 20:29:50 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Michael L. Hitch
|
||||
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: cbiisc.c,v 1.13 2002/01/28 09:56:53 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cbiisc.c,v 1.14 2002/09/27 20:29:50 thorpej Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
|
@ -69,7 +69,7 @@ void cbiiscattach(struct device *, struct device *, void *);
|
|||
int cbiiscmatch(struct device *, struct cfdata *, void *);
|
||||
|
||||
/* Linkup to the rest of the kernel */
|
||||
struct cfattach cbiisc_ca = {
|
||||
const struct cfattach cbiisc_ca = {
|
||||
sizeof(struct cbiisc_softc), cbiiscmatch, cbiiscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cbsc.c,v 1.14 2002/01/28 09:56:53 aymeric Exp $ */
|
||||
/* $NetBSD: cbsc.c,v 1.15 2002/09/27 20:29:51 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Michael L. Hitch
|
||||
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: cbsc.c,v 1.14 2002/01/28 09:56:53 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: cbsc.c,v 1.15 2002/09/27 20:29:51 thorpej Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
|
@ -69,7 +69,7 @@ void cbscattach(struct device *, struct device *, void *);
|
|||
int cbscmatch(struct device *, struct cfdata *, void *);
|
||||
|
||||
/* Linkup to the rest of the kernel */
|
||||
struct cfattach cbsc_ca = {
|
||||
const struct cfattach cbsc_ca = {
|
||||
sizeof(struct cbsc_softc), cbscmatch, cbscattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: clock.c,v 1.39 2002/05/14 00:08:21 matt Exp $ */
|
||||
/* $NetBSD: clock.c,v 1.40 2002/09/27 20:29:51 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988 University of Utah.
|
||||
|
@ -43,7 +43,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.39 2002/05/14 00:08:21 matt Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.40 2002/09/27 20:29:51 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -97,7 +97,7 @@ void clockattach(struct device *, struct device *, void *);
|
|||
void cpu_initclocks(void);
|
||||
void calibrate_delay(struct device *);
|
||||
|
||||
struct cfattach clock_ca = {
|
||||
const struct cfattach clock_ca = {
|
||||
sizeof(struct device), clockmatch, clockattach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: com_supio.c,v 1.15 2002/01/28 09:56:53 aymeric Exp $ */
|
||||
/* $NetBSD: com_supio.c,v 1.16 2002/09/27 20:29:52 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -72,7 +72,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_supio.c,v 1.15 2002/01/28 09:56:53 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: com_supio.c,v 1.16 2002/09/27 20:29:52 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -116,7 +116,7 @@ static int comconsrate;
|
|||
static tcflag_t comconscflag;
|
||||
#endif
|
||||
|
||||
struct cfattach com_supio_ca = {
|
||||
const struct cfattach com_supio_ca = {
|
||||
sizeof(struct comsupio_softc), com_supio_match, com_supio_attach
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: drbbc.c,v 1.8 2002/01/28 09:56:53 aymeric Exp $ */
|
||||
/* $NetBSD: drbbc.c,v 1.9 2002/09/27 20:29:52 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: drbbc.c,v 1.8 2002/01/28 09:56:53 aymeric Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: drbbc.c,v 1.9 2002/09/27 20:29:52 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -72,7 +72,7 @@ struct drbbc_softc {
|
|||
struct ds_handle sc_dsh;
|
||||
};
|
||||
|
||||
struct cfattach drbbc_ca = {
|
||||
const struct cfattach drbbc_ca = {
|
||||
sizeof(struct drbbc_softc),
|
||||
drbbc_match,
|
||||
drbbc_attach
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue