diff options
| author | Don Lewis <truckman@FreeBSD.org> | 2004-11-14 20:37:41 +0000 |
|---|---|---|
| committer | Don Lewis <truckman@FreeBSD.org> | 2004-11-14 20:37:41 +0000 |
| commit | f38e4909dda3879880b9ada223a7d196185244d4 (patch) | |
| tree | 617f8728c46847bff0392ed1e45f0a20a9c16107 /sys/dev/acpica | |
| parent | 1eef0330d9897aecdb02616a2f3a97e5c90b781d (diff) | |
Notes
Diffstat (limited to 'sys/dev/acpica')
| -rw-r--r-- | sys/dev/acpica/acpi_snc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpi_snc.c b/sys/dev/acpica/acpi_snc.c index 006055e735a54..4d5127ce159e2 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 |
