Deleted Added
full compact
acpivar.h (236424) acpivar.h (236772)
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 236424 2012-06-01 21:33:33Z jkim $
28 * $FreeBSD: head/sys/dev/acpica/acpivar.h 236772 2012-06-09 00:37:26Z iwasaki $
29 */
30
31#ifndef _ACPIVAR_H_
32#define _ACPIVAR_H_
33
34#ifdef _KERNEL
35
36#include "acpi_if.h"

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

66 int acpi_suspend_sx;
67
68 int acpi_sleep_delay;
69 int acpi_s4bios;
70 int acpi_do_disable;
71 int acpi_verbose;
72 int acpi_handle_reboot;
73
29 */
30
31#ifndef _ACPIVAR_H_
32#define _ACPIVAR_H_
33
34#ifdef _KERNEL
35
36#include "acpi_if.h"

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

66 int acpi_suspend_sx;
67
68 int acpi_sleep_delay;
69 int acpi_s4bios;
70 int acpi_do_disable;
71 int acpi_verbose;
72 int acpi_handle_reboot;
73
74 bus_dma_tag_t acpi_waketag;
75 bus_dmamap_t acpi_wakemap;
76 vm_offset_t acpi_wakeaddr;
77 vm_paddr_t acpi_wakephys;
78
79 int acpi_next_sstate; /* Next suspend Sx state. */
80 struct apm_clone_data *acpi_clone; /* Pseudo-dev for devd(8). */
81 STAILQ_HEAD(,apm_clone_data) apm_cdevs; /* All apm/apmctl/acpi cdevs. */
82 struct callout susp_force_to; /* Force suspend if no acks. */
83};

--- 417 unchanged lines hidden ---
74 vm_offset_t acpi_wakeaddr;
75 vm_paddr_t acpi_wakephys;
76
77 int acpi_next_sstate; /* Next suspend Sx state. */
78 struct apm_clone_data *acpi_clone; /* Pseudo-dev for devd(8). */
79 STAILQ_HEAD(,apm_clone_data) apm_cdevs; /* All apm/apmctl/acpi cdevs. */
80 struct callout susp_force_to; /* Force suspend if no acks. */
81};

--- 417 unchanged lines hidden ---