Module Name: src
Committed By: cegger
Date: Tue May 12 13:21:06 UTC 2009
Modified Files:
src/sys/dev/sun: bwtwo.c ms_zs.c sunms.c
Log Message:
struct cfdata * -> cfdata_t, no functional changes intended.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/sun/bwtwo.c
cvs rdiff -u -r1.18 -r1.19 src/sys/dev/sun/ms_zs.c
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/sun/sunms.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/sun/bwtwo.c
diff -u src/sys/dev/sun/bwtwo.c:1.24 src/sys/dev/sun/bwtwo.c:1.25
--- src/sys/dev/sun/bwtwo.c:1.24 Sat Mar 14 21:04:23 2009
+++ src/sys/dev/sun/bwtwo.c Tue May 12 13:21:06 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: bwtwo.c,v 1.24 2009/03/14 21:04:23 dsl Exp $ */
+/* $NetBSD: bwtwo.c,v 1.25 2009/05/12 13:21:06 cegger Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -79,7 +79,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bwtwo.c,v 1.24 2009/03/14 21:04:23 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bwtwo.c,v 1.25 2009/05/12 13:21:06 cegger Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -174,7 +174,7 @@
int
bwtwo_pfour_probe(void *vaddr, void *arg)
{
- struct cfdata *cf = arg;
+ cfdata_t cf = arg;
switch (fb_pfour_id(vaddr)) {
case PFOUR_ID_BW:
Index: src/sys/dev/sun/ms_zs.c
diff -u src/sys/dev/sun/ms_zs.c:1.18 src/sys/dev/sun/ms_zs.c:1.19
--- src/sys/dev/sun/ms_zs.c:1.18 Sun Apr 20 15:44:01 2008
+++ src/sys/dev/sun/ms_zs.c Tue May 12 13:21:06 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: ms_zs.c,v 1.18 2008/04/20 15:44:01 tsutsui Exp $ */
+/* $NetBSD: ms_zs.c,v 1.19 2009/05/12 13:21:06 cegger Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -52,7 +52,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ms_zs.c,v 1.18 2008/04/20 15:44:01 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ms_zs.c,v 1.19 2009/05/12 13:21:06 cegger Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -125,7 +125,7 @@
struct ms_softc *ms = device_private(self);
struct zsc_attach_args *args = aux;
struct zs_chanstate *cs;
- struct cfdata *cf;
+ cfdata_t cf;
int channel, ms_unit;
int reset, s;
int bps;
Index: src/sys/dev/sun/sunms.c
diff -u src/sys/dev/sun/sunms.c:1.29 src/sys/dev/sun/sunms.c:1.30
--- src/sys/dev/sun/sunms.c:1.29 Mon Apr 21 08:16:12 2008
+++ src/sys/dev/sun/sunms.c Tue May 12 13:21:06 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: sunms.c,v 1.29 2008/04/21 08:16:12 martin Exp $ */
+/* $NetBSD: sunms.c,v 1.30 2009/05/12 13:21:06 cegger Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -52,7 +52,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunms.c,v 1.29 2008/04/21 08:16:12 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunms.c,v 1.30 2009/05/12 13:21:06 cegger Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -141,7 +141,7 @@
{
struct ms_softc *ms = device_private(self);
struct kbd_ms_tty_attach_args *args = aux;
- struct cfdata *cf;
+ cfdata_t cf;
struct tty *tp = args->kmta_tp;
int ms_unit;
#if NWSMOUSE > 0