diff options
| author | cegger <cegger@NetBSD.org> | 2009-05-12 14:07:01 +0000 |
|---|---|---|
| committer | cegger <cegger@NetBSD.org> | 2009-05-12 14:07:01 +0000 |
| commit | 22f40c6af473fcb5ef0e4e7d7e8945fbfe40e62f (patch) | |
| tree | 3bb3aba6153d010f9ba8e48d3a749823197646c6 /sys | |
| parent | 1657de36509b0b2249047f2c1abb7b83eb7db1af (diff) | |
KNF
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/adb/adb_bus.c | 6 | ||||
| -rw-r--r-- | sys/dev/ata/ata_raid.c | 6 | ||||
| -rw-r--r-- | sys/dev/bi/kdb.c | 6 | ||||
| -rw-r--r-- | sys/dev/qbus/if_de.c | 6 | ||||
| -rw-r--r-- | sys/dev/qbus/uda.c | 8 |
5 files changed, 16 insertions, 16 deletions
diff --git a/sys/dev/adb/adb_bus.c b/sys/dev/adb/adb_bus.c index 99f5b37cc2b..6b733143d75 100644 --- a/sys/dev/adb/adb_bus.c +++ b/sys/dev/adb/adb_bus.c @@ -1,4 +1,4 @@ -/* $NetBSD: adb_bus.c,v 1.8 2008/04/29 06:53:02 martin Exp $ */ +/* $NetBSD: adb_bus.c,v 1.9 2009/05/12 14:07:01 cegger Exp $ */ /*- * Copyright (c) 2006 Michael Lorenz @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: adb_bus.c,v 1.8 2008/04/29 06:53:02 martin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: adb_bus.c,v 1.9 2009/05/12 14:07:01 cegger Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -64,7 +64,7 @@ struct nadb_softc { CFATTACH_DECL_NEW(nadb, sizeof(struct nadb_softc), nadb_match, nadb_attach, NULL, NULL); -static void nadb_init(device_t ); +static void nadb_init(device_t); static void nadb_handler(void *, int, uint8_t *); static void nadb_send_sync(void *, int, int, uint8_t *); static int nadb_register(struct nadb_softc *, int, int, int); diff --git a/sys/dev/ata/ata_raid.c b/sys/dev/ata/ata_raid.c index ced54a2ceb5..900a58aad8e 100644 --- a/sys/dev/ata/ata_raid.c +++ b/sys/dev/ata/ata_raid.c @@ -1,4 +1,4 @@ -/* $NetBSD: ata_raid.c,v 1.32 2008/09/11 11:08:50 tron Exp $ */ +/* $NetBSD: ata_raid.c,v 1.33 2009/05/12 14:07:01 cegger Exp $ */ /* * Copyright (c) 2003 Wasabi Systems, Inc. @@ -40,7 +40,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ata_raid.c,v 1.32 2008/09/11 11:08:50 tron Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ata_raid.c,v 1.33 2009/05/12 14:07:01 cegger Exp $"); #include <sys/param.h> #include <sys/buf.h> @@ -77,7 +77,7 @@ static int ataraid_match(device_t, cfdata_t, void *); static void ataraid_attach(device_t, device_t, void *); static int ataraid_print(void *, const char *); -static int ata_raid_finalize(device_t ); +static int ata_raid_finalize(device_t); ataraid_array_info_list_t ataraid_array_info_list = TAILQ_HEAD_INITIALIZER(ataraid_array_info_list); diff --git a/sys/dev/bi/kdb.c b/sys/dev/bi/kdb.c index 8bc823c1637..162a0bf8756 100644 --- a/sys/dev/bi/kdb.c +++ b/sys/dev/bi/kdb.c @@ -1,4 +1,4 @@ -/* $NetBSD: kdb.c,v 1.44 2008/07/09 18:02:46 joerg Exp $ */ +/* $NetBSD: kdb.c,v 1.45 2009/05/12 14:08:34 cegger 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.44 2008/07/09 18:02:46 joerg Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kdb.c,v 1.45 2009/05/12 14:08:34 cegger Exp $"); #include <sys/param.h> #include <sys/kernel.h> @@ -94,7 +94,7 @@ int kdbmatch(device_t, cfdata_t, void *); void kdbattach(device_t, device_t, void *); void kdbreset(int); void kdbintr(void *); -void kdbctlrdone(device_t ); +void kdbctlrdone(device_t); int kdbprint(void *, const char *); void kdbsaerror(device_t, int); void kdbgo(device_t, struct mscp_xi *); diff --git a/sys/dev/qbus/if_de.c b/sys/dev/qbus/if_de.c index 7779275bba3..ebab5113f62 100644 --- a/sys/dev/qbus/if_de.c +++ b/sys/dev/qbus/if_de.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_de.c,v 1.26 2009/04/18 14:58:03 tsutsui Exp $ */ +/* $NetBSD: if_de.c,v 1.27 2009/05/12 14:08:35 cegger Exp $ */ /* * Copyright (c) 1982, 1986, 1989 Regents of the University of California. @@ -81,7 +81,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_de.c,v 1.26 2009/04/18 14:58:03 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_de.c,v 1.27 2009/05/12 14:08:35 cegger Exp $"); #include "opt_inet.h" #include "bpfilter.h" @@ -180,7 +180,7 @@ static void deattach(device_t, device_t, void *); static void dewait(struct de_softc *, const char *); static int deinit(struct ifnet *); static int deioctl(struct ifnet *, u_long, void *); -static void dereset(device_t ); +static void dereset(device_t); static void destop(struct ifnet *, int); static void destart(struct ifnet *); static void derecv(struct de_softc *); diff --git a/sys/dev/qbus/uda.c b/sys/dev/qbus/uda.c index a7641cfb596..8b045396f8b 100644 --- a/sys/dev/qbus/uda.c +++ b/sys/dev/qbus/uda.c @@ -1,4 +1,4 @@ -/* $NetBSD: uda.c,v 1.59 2009/03/18 16:00:20 cegger Exp $ */ +/* $NetBSD: uda.c,v 1.60 2009/05/12 14:08:35 cegger Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. @@ -76,7 +76,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uda.c,v 1.59 2009/03/18 16:00:20 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uda.c,v 1.60 2009/05/12 14:08:35 cegger Exp $"); #include <sys/param.h> #include <sys/kernel.h> @@ -116,10 +116,10 @@ struct uda_softc { static int udamatch(device_t, cfdata_t, void *); static void udaattach(device_t, device_t, void *); -static void udareset(device_t ); +static void udareset(device_t); static void udaintr(void *); static int udaready(struct uba_unit *); -static void udactlrdone(device_t ); +static void udactlrdone(device_t); static int udaprint(void *, const char *); static void udasaerror(device_t, int); static void udago(device_t, struct mscp_xi *); |
