Deleted Added
full compact
acpi_machdep.c (131312) acpi_machdep.c (136366)
1/*-
2 * Copyright (c) 2001 Doug Rabson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001 Doug Rabson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/ia64/acpica/acpi_machdep.c 131312 2004-06-30 04:42:29Z njl $
26 * $FreeBSD: head/sys/ia64/acpica/acpi_machdep.c 136366 2004-10-11 05:39:15Z njl $
27 */
28
29#include <sys/param.h>
30#include <sys/bus.h>
31
32#include "acpi.h"
33#include <dev/acpica/acpivar.h>
27 */
28
29#include <sys/param.h>
30#include <sys/bus.h>
31
32#include "acpi.h"
33#include <dev/acpica/acpivar.h>
34#include <machine/pal.h>
34
35int
36acpi_machdep_init(device_t dev)
37{
38 struct acpi_softc *sc;
39
40 sc = device_get_softc(dev);
41
42 acpi_install_wakeup_handler(sc);
43
44 return (0);
45}
46
47int
48acpi_machdep_quirks(int *quirks)
49{
50 return (0);
51}
35
36int
37acpi_machdep_init(device_t dev)
38{
39 struct acpi_softc *sc;
40
41 sc = device_get_softc(dev);
42
43 acpi_install_wakeup_handler(sc);
44
45 return (0);
46}
47
48int
49acpi_machdep_quirks(int *quirks)
50{
51 return (0);
52}
53
54void
55acpi_cpu_c1()
56{
57 ia64_call_pal_static(PAL_HALT_LIGHT, 0, 0, 0);
58}