diff options
| author | cegger <cegger@NetBSD.org> | 2009-05-12 12:10:29 +0000 |
|---|---|---|
| committer | cegger <cegger@NetBSD.org> | 2009-05-12 12:10:29 +0000 |
| commit | 32c4940900e916e597f71e482edcd7a7b26a1074 (patch) | |
| tree | 2e945988987a53b270f9cea894f3e08fff13fbc8 /sys/dev/dec | |
| parent | d4da6c3d2efe21fdd8f994f4add0a78250fd6c3e (diff) | |
struct cfdata * -> cfdata_t, no functional changes intended.
Diffstat (limited to 'sys/dev/dec')
| -rw-r--r-- | sys/dev/dec/dzkbd.c | 8 | ||||
| -rw-r--r-- | sys/dev/dec/dzms.c | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/dec/dzkbd.c b/sys/dev/dec/dzkbd.c index 023bcae1333..d1d51bbf7bb 100644 --- a/sys/dev/dec/dzkbd.c +++ b/sys/dev/dec/dzkbd.c @@ -1,4 +1,4 @@ -/* $NetBSD: dzkbd.c,v 1.21 2009/03/14 15:36:17 dsl Exp $ */ +/* $NetBSD: dzkbd.c,v 1.22 2009/05/12 12:11:54 cegger Exp $ */ /* * Copyright (c) 1992, 1993 @@ -45,7 +45,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: dzkbd.c,v 1.21 2009/03/14 15:36:17 dsl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dzkbd.c,v 1.22 2009/05/12 12:11:54 cegger Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -91,7 +91,7 @@ struct dzkbd_softc { static int dzkbd_input(void *, int); -static int dzkbd_match(struct device *, struct cfdata *, void *); +static int dzkbd_match(struct device *, cfdata_t, void *); static void dzkbd_attach(struct device *, struct device *, void *); CFATTACH_DECL(dzkbd, sizeof(struct dzkbd_softc), @@ -130,7 +130,7 @@ const struct wskbd_mapdata dzkbd_keymapdata = { * kbd_match: how is this dz line configured? */ static int -dzkbd_match(struct device *parent, struct cfdata *cf, void *aux) +dzkbd_match(struct device *parent, cfdata_t cf, void *aux) { struct dzkm_attach_args *daa = aux; diff --git a/sys/dev/dec/dzms.c b/sys/dev/dec/dzms.c index f1c82cc6a3b..1f48c1d5ce8 100644 --- a/sys/dev/dec/dzms.c +++ b/sys/dev/dec/dzms.c @@ -1,4 +1,4 @@ -/* $NetBSD: dzms.c,v 1.19 2009/03/14 21:04:19 dsl Exp $ */ +/* $NetBSD: dzms.c,v 1.20 2009/05/12 12:11:54 cegger Exp $ */ /* * Copyright (c) 1992, 1993 @@ -45,7 +45,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: dzms.c,v 1.19 2009/03/14 21:04:19 dsl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: dzms.c,v 1.20 2009/05/12 12:11:54 cegger Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -82,7 +82,7 @@ struct dzms_softc { /* driver status information */ struct device *sc_wsmousedev; }; -static int dzms_match(struct device *, struct cfdata *, void *); +static int dzms_match(struct device *, cfdata_t, void *); static void dzms_attach(struct device *, struct device *, void *); static int dzms_input(void *, int); @@ -100,7 +100,7 @@ const struct wsmouse_accessops dzms_accessops = { }; static int -dzms_match(struct device *parent, struct cfdata *cf, void *aux) +dzms_match(struct device *parent, cfdata_t cf, void *aux) { struct dzkm_attach_args *daa = aux; |
