From ba0d5d1560818232aedf2f282e71fffc29304aba Mon Sep 17 00:00:00 2001 From: yamt Date: Wed, 15 Nov 2006 10:30:17 +0000 Subject: remove __unused from function parameters. --- sys/dev/pci/if_wm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/pci/if_wm.c b/sys/dev/pci/if_wm.c index 00e622b9d79..48d00b1d51e 100644 --- a/sys/dev/pci/if_wm.c +++ b/sys/dev/pci/if_wm.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_wm.c,v 1.127 2006/10/21 14:10:33 bouyer Exp $ */ +/* $NetBSD: if_wm.c,v 1.128 2006/11/15 10:30:17 yamt Exp $ */ /* * Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc. @@ -47,7 +47,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.127 2006/10/21 14:10:33 bouyer Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.128 2006/11/15 10:30:17 yamt Exp $"); #include "bpfilter.h" #include "rnd.h" @@ -805,7 +805,7 @@ wm_lookup(const struct pci_attach_args *pa) } static int -wm_match(struct device *parent __unused, struct cfdata *cf __unused, void *aux) +wm_match(struct device *parent, struct cfdata *cf, void *aux) { struct pci_attach_args *pa = aux; @@ -816,7 +816,7 @@ wm_match(struct device *parent __unused, struct cfdata *cf __unused, void *aux) } static void -wm_attach(struct device *parent __unused, struct device *self, void *aux) +wm_attach(struct device *parent, struct device *self, void *aux) { struct wm_softc *sc = (void *) self; struct pci_attach_args *pa = aux; -- cgit