Module Name: src
Committed By: cegger
Date: Tue May 12 14:08:35 UTC 2009
Modified Files:
src/sys/dev/bi: kdb.c
src/sys/dev/qbus: if_de.c uda.c
Log Message:
KNF
To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/sys/dev/bi/kdb.c
cvs rdiff -u -r1.26 -r1.27 src/sys/dev/qbus/if_de.c
cvs rdiff -u -r1.59 -r1.60 src/sys/dev/qbus/uda.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/bi/kdb.c
diff -u src/sys/dev/bi/kdb.c:1.44 src/sys/dev/bi/kdb.c:1.45
--- src/sys/dev/bi/kdb.c:1.44 Wed Jul 9 18:02:46 2008
+++ src/sys/dev/bi/kdb.c Tue May 12 14:08:34 2009
@@ -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 @@
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 *);
Index: src/sys/dev/qbus/if_de.c
diff -u src/sys/dev/qbus/if_de.c:1.26 src/sys/dev/qbus/if_de.c:1.27
--- src/sys/dev/qbus/if_de.c:1.26 Sat Apr 18 14:58:03 2009
+++ src/sys/dev/qbus/if_de.c Tue May 12 14:08:35 2009
@@ -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 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 *);
Index: src/sys/dev/qbus/uda.c
diff -u src/sys/dev/qbus/uda.c:1.59 src/sys/dev/qbus/uda.c:1.60
--- src/sys/dev/qbus/uda.c:1.59 Wed Mar 18 16:00:20 2009
+++ src/sys/dev/qbus/uda.c Tue May 12 14:08:35 2009
@@ -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 @@
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 *);