Module Name:    src
Committed By:   cegger
Date:           Tue May 12 14:07:01 UTC 2009

Modified Files:
        src/sys/dev/adb: adb_bus.c
        src/sys/dev/ata: ata_raid.c

Log Message:
KNF


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/adb/adb_bus.c
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/ata/ata_raid.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/adb/adb_bus.c
diff -u src/sys/dev/adb/adb_bus.c:1.8 src/sys/dev/adb/adb_bus.c:1.9
--- src/sys/dev/adb/adb_bus.c:1.8	Tue Apr 29 06:53:02 2008
+++ src/sys/dev/adb/adb_bus.c	Tue May 12 14:07:01 2009
@@ -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 @@
 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);

Index: src/sys/dev/ata/ata_raid.c
diff -u src/sys/dev/ata/ata_raid.c:1.32 src/sys/dev/ata/ata_raid.c:1.33
--- src/sys/dev/ata/ata_raid.c:1.32	Thu Sep 11 11:08:50 2008
+++ src/sys/dev/ata/ata_raid.c	Tue May 12 14:07:01 2009
@@ -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 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);

Reply via email to