Missed a struct device -> device_t, found by joerg.

This commit is contained in:
xtraeme 2007-11-05 23:57:32 +00:00
parent d61d03fbde
commit f4046a2e1c
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: aiboost.c,v 1.16 2007/11/04 13:59:49 xtraeme Exp $ */
/* $NetBSD: aiboost.c,v 1.17 2007/11/05 23:57:32 xtraeme Exp $ */
/*-
* Copyright (c) 2007 Juan Romero Pardines
@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: aiboost.c,v 1.16 2007/11/04 13:59:49 xtraeme Exp $");
__KERNEL_RCSID(0, "$NetBSD: aiboost.c,v 1.17 2007/11/05 23:57:32 xtraeme Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -79,7 +79,7 @@ static int aiboost_refresh_sensors(struct sysmon_envsys *,
/* autoconf(9) glue */
static int aiboost_acpi_match(device_t, struct cfdata *, void *);
static void aiboost_acpi_attach(device_t, struct device *, void *);
static void aiboost_acpi_attach(device_t, device_t, void *);
CFATTACH_DECL_NEW(aiboost, sizeof(struct aiboost_softc), aiboost_acpi_match,
aiboost_acpi_attach, NULL, NULL);