Deleted Added
full compact
acpi_ec.c (146166) acpi_ec.c (150003)
1/*-
2 * Copyright (c) 2003 Nate Lawson
3 * Copyright (c) 2000 Michael Smith
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

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

131 * software, or service, directly or indirectly, to any country for which the
132 * United States government or any agency thereof requires an export license,
133 * other governmental approval, or letter of assurance, without first obtaining
134 * such license, approval or letter.
135 *
136 *****************************************************************************/
137
138#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2003 Nate Lawson
3 * Copyright (c) 2000 Michael Smith
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

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

131 * software, or service, directly or indirectly, to any country for which the
132 * United States government or any agency thereof requires an export license,
133 * other governmental approval, or letter of assurance, without first obtaining
134 * such license, approval or letter.
135 *
136 *****************************************************************************/
137
138#include <sys/cdefs.h>
139__FBSDID("$FreeBSD: head/sys/dev/acpica/acpi_ec.c 146166 2005-05-12 22:35:08Z njl $");
139__FBSDID("$FreeBSD: head/sys/dev/acpica/acpi_ec.c 150003 2005-09-11 18:39:03Z obrien $");
140
141#include "opt_acpi.h"
142#include <sys/param.h>
143#include <sys/kernel.h>
144#include <sys/bus.h>
145#include <sys/malloc.h>
146#include <sys/module.h>
147#include <sys/sx.h>
148
149#include <machine/bus.h>
150#include <machine/resource.h>
151#include <sys/rman.h>
152
140
141#include "opt_acpi.h"
142#include <sys/param.h>
143#include <sys/kernel.h>
144#include <sys/bus.h>
145#include <sys/malloc.h>
146#include <sys/module.h>
147#include <sys/sx.h>
148
149#include <machine/bus.h>
150#include <machine/resource.h>
151#include <sys/rman.h>
152
153#include "acpi.h"
153#include <contrib/dev/acpica/acpi.h>
154#include <dev/acpica/acpivar.h>
155
156/* Hooks for the ACPI CA debugging infrastructure */
157#define _COMPONENT ACPI_EC
158ACPI_MODULE_NAME("EC")
159
160/*
161 * EC_COMMAND:

--- 881 unchanged lines hidden ---
154#include <dev/acpica/acpivar.h>
155
156/* Hooks for the ACPI CA debugging infrastructure */
157#define _COMPONENT ACPI_EC
158ACPI_MODULE_NAME("EC")
159
160/*
161 * EC_COMMAND:

--- 881 unchanged lines hidden ---