Deleted Added
full compact
acpivar.h (129783) acpivar.h (129805)
1/*-
2 * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@jp.freebsd.org>
3 * Copyright (c) 2000 Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000 BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 11 unchanged lines hidden (view full) ---

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
1/*-
2 * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@jp.freebsd.org>
3 * Copyright (c) 2000 Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000 BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 11 unchanged lines hidden (view full) ---

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: head/sys/dev/acpica/acpivar.h 129783 2004-05-27 18:38:45Z njl $
28 * $FreeBSD: head/sys/dev/acpica/acpivar.h 129805 2004-05-28 07:04:09Z njl $
29 */
30
31#include "bus_if.h"
32#include <sys/eventhandler.h>
33#include <sys/sysctl.h>
34#if __FreeBSD_version >= 500000
35#include <sys/lock.h>
36#include <sys/mutex.h>

--- 188 unchanged lines hidden (view full) ---

225extern ACPI_STATUS acpi_AppendBufferResource(ACPI_BUFFER *buf,
226 ACPI_RESOURCE *res);
227extern ACPI_STATUS acpi_OverrideInterruptLevel(UINT32 InterruptNumber);
228extern ACPI_STATUS acpi_SetIntrModel(int model);
229extern ACPI_STATUS acpi_SetSleepState(struct acpi_softc *sc, int state);
230int acpi_wake_init(device_t dev, int type);
231int acpi_wake_set_enable(device_t dev, int enable);
232int acpi_wake_sleep_prep(device_t dev, int sstate);
29 */
30
31#include "bus_if.h"
32#include <sys/eventhandler.h>
33#include <sys/sysctl.h>
34#if __FreeBSD_version >= 500000
35#include <sys/lock.h>
36#include <sys/mutex.h>

--- 188 unchanged lines hidden (view full) ---

225extern ACPI_STATUS acpi_AppendBufferResource(ACPI_BUFFER *buf,
226 ACPI_RESOURCE *res);
227extern ACPI_STATUS acpi_OverrideInterruptLevel(UINT32 InterruptNumber);
228extern ACPI_STATUS acpi_SetIntrModel(int model);
229extern ACPI_STATUS acpi_SetSleepState(struct acpi_softc *sc, int state);
230int acpi_wake_init(device_t dev, int type);
231int acpi_wake_set_enable(device_t dev, int enable);
232int acpi_wake_sleep_prep(device_t dev, int sstate);
233int acpi_wake_run_prep(device_t dev);
233extern ACPI_STATUS acpi_Startup(void);
234extern ACPI_STATUS acpi_Enable(struct acpi_softc *sc);
235extern ACPI_STATUS acpi_Disable(struct acpi_softc *sc);
236extern void acpi_UserNotify(const char *subsystem, ACPI_HANDLE h,
237 uint8_t notify);
238struct resource * acpi_bus_alloc_gas(device_t dev, int *rid,
239 ACPI_GENERIC_ADDRESS *gas);
240

--- 116 unchanged lines hidden ---
234extern ACPI_STATUS acpi_Startup(void);
235extern ACPI_STATUS acpi_Enable(struct acpi_softc *sc);
236extern ACPI_STATUS acpi_Disable(struct acpi_softc *sc);
237extern void acpi_UserNotify(const char *subsystem, ACPI_HANDLE h,
238 uint8_t notify);
239struct resource * acpi_bus_alloc_gas(device_t dev, int *rid,
240 ACPI_GENERIC_ADDRESS *gas);
241

--- 116 unchanged lines hidden ---