summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/Osd
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>2001-09-07 02:55:00 +0000
committermsmith <msmith@FreeBSD.org>2001-09-07 02:55:00 +0000
commitb6bb56ed4e2d438bd449ccda8675874f28419328 (patch)
treeb9ab562fb080f891bb8250cd5bc1556e6aa1d568 /sys/dev/acpica/Osd
parent900b040f00a2adc34fc7fdec51ad41a720194fae (diff)
downloadFreeBSD-src-b6bb56ed4e2d438bd449ccda8675874f28419328.zip
FreeBSD-src-b6bb56ed4e2d438bd449ccda8675874f28419328.tar.gz
Move OsdEnvironment.c into MD code; searching for the ACPI tables is not
portable.
Diffstat (limited to 'sys/dev/acpica/Osd')
-rw-r--r--sys/dev/acpica/Osd/OsdEnvironment.c64
1 files changed, 0 insertions, 64 deletions
diff --git a/sys/dev/acpica/Osd/OsdEnvironment.c b/sys/dev/acpica/Osd/OsdEnvironment.c
deleted file mode 100644
index 8b8e663..0000000
--- a/sys/dev/acpica/Osd/OsdEnvironment.c
+++ /dev/null
@@ -1,64 +0,0 @@
-/*-
- * Copyright (c) 2000 Michael Smith
- * Copyright (c) 2000 BSDi
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- * $FreeBSD$
- */
-
-/*
- * 6.1 : Environmental support
- */
-
-#include "acpi.h"
-
-#ifdef __i386__
-#include <machine/pc/bios.h>
-#endif
-
-ACPI_STATUS
-AcpiOsInitialize(void)
-{
-#ifdef __i386__
- /*
- * Prevent the PnP BIOS code from interfering with our own scan of ISA devices.
- */
- PnPBIOStable = NULL;
-#endif
- return(NULL);
-}
-
-ACPI_STATUS
-AcpiOsTerminate(void)
-{
- return(NULL);
-}
-
-ACPI_STATUS
-AcpiOsGetRootPointer(
- UINT32 Flags,
- ACPI_PHYSICAL_ADDRESS *RsdpPhysicalAddress)
-{
- return(AcpiFindRootPointer(Flags, RsdpPhysicalAddress));
-}
OpenPOWER on IntegriCloud