summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortruckman <truckman@FreeBSD.org>2004-11-14 20:37:41 +0000
committertruckman <truckman@FreeBSD.org>2004-11-14 20:37:41 +0000
commit5e446cf7039751e34858c61f01c77042b9ab47cd (patch)
tree617f8728c46847bff0392ed1e45f0a20a9c16107
parent0188f1bf36ef4568e79b40fbe6a65cd179c8330e (diff)
downloadFreeBSD-src-5e446cf7039751e34858c61f01c77042b9ab47cd.zip
FreeBSD-src-5e446cf7039751e34858c61f01c77042b9ab47cd.tar.gz
s/return_VALUE/return / to fix build breakage when ACPI_DEBUG is
defined.
-rw-r--r--sys/dev/acpica/acpi_snc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpi_snc.c b/sys/dev/acpica/acpi_snc.c
index 006055e..4d5127c 100644
--- a/sys/dev/acpica/acpi_snc.c
+++ b/sys/dev/acpica/acpi_snc.c
@@ -125,20 +125,20 @@ acpi_snc_attach(device_t dev)
acpi_snc_oids[i].comment);
}
- return_VALUE(0);
+ return (0);
}
static int
acpi_snc_detach(device_t dev)
{
- return_VALUE(0);
+ return (0);
}
#if 0
static int
acpi_snc_suspend(device_t dev)
{
struct acpi_snc_softc *sc = device_get_softc(dev);
- return_VALUE(0);
+ return (0);
}
static int
OpenPOWER on IntegriCloud