Deleted Added
full compact
acpi_isab.c (131282) acpi_isab.c (150003)
1/*-
2 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
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

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

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
27#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
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

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

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
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/dev/acpica/acpi_isab.c 131282 2004-06-29 19:02:27Z njl $");
28__FBSDID("$FreeBSD: head/sys/dev/acpica/acpi_isab.c 150003 2005-09-11 18:39:03Z obrien $");
29
30/*
31 * ISA Bridge driver for Generic ISA Bus Devices. See section 10.7 of the
32 * ACPI 2.0a specification for details on this device.
33 */
34
35#include "opt_acpi.h"
36#include <sys/param.h>
37#include <sys/bus.h>
38#include <sys/kernel.h>
39#include <sys/malloc.h>
40#include <sys/module.h>
41
29
30/*
31 * ISA Bridge driver for Generic ISA Bus Devices. See section 10.7 of the
32 * ACPI 2.0a specification for details on this device.
33 */
34
35#include "opt_acpi.h"
36#include <sys/param.h>
37#include <sys/bus.h>
38#include <sys/kernel.h>
39#include <sys/malloc.h>
40#include <sys/module.h>
41
42#include "acpi.h"
42#include <contrib/dev/acpica/acpi.h>
43#include <dev/acpica/acpivar.h>
44#include <isa/isavar.h>
45
46/* Hooks for the ACPI CA debugging infrastructure. */
47#define _COMPONENT ACPI_BUS
48ACPI_MODULE_NAME("ISA_ACPI")
49
50struct acpi_isab_softc {

--- 79 unchanged lines hidden ---
43#include <dev/acpica/acpivar.h>
44#include <isa/isavar.h>
45
46/* Hooks for the ACPI CA debugging infrastructure. */
47#define _COMPONENT ACPI_BUS
48ACPI_MODULE_NAME("ISA_ACPI")
49
50struct acpi_isab_softc {

--- 79 unchanged lines hidden ---