Deleted Added
full compact
acpi_perf.c (241885) acpi_perf.c (246128)
1/*-
2 * Copyright (c) 2003-2005 Nate Lawson (SDG)
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-2005 Nate Lawson (SDG)
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_perf.c 241885 2012-10-22 13:06:09Z eadler $");
28__FBSDID("$FreeBSD: head/sys/dev/acpica/acpi_perf.c 246128 2013-01-30 18:01:20Z sbz $");
29
30#include "opt_acpi.h"
31#include <sys/param.h>
32#include <sys/kernel.h>
33#include <sys/proc.h>
34#include <sys/sched.h>
35#include <sys/bus.h>
36#include <sys/cpu.h>

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

117 DEVMETHOD(device_attach, acpi_perf_attach),
118 DEVMETHOD(device_detach, acpi_perf_detach),
119
120 /* cpufreq interface */
121 DEVMETHOD(cpufreq_drv_set, acpi_px_set),
122 DEVMETHOD(cpufreq_drv_get, acpi_px_get),
123 DEVMETHOD(cpufreq_drv_type, acpi_px_type),
124 DEVMETHOD(cpufreq_drv_settings, acpi_px_settings),
29
30#include "opt_acpi.h"
31#include <sys/param.h>
32#include <sys/kernel.h>
33#include <sys/proc.h>
34#include <sys/sched.h>
35#include <sys/bus.h>
36#include <sys/cpu.h>

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

117 DEVMETHOD(device_attach, acpi_perf_attach),
118 DEVMETHOD(device_detach, acpi_perf_detach),
119
120 /* cpufreq interface */
121 DEVMETHOD(cpufreq_drv_set, acpi_px_set),
122 DEVMETHOD(cpufreq_drv_get, acpi_px_get),
123 DEVMETHOD(cpufreq_drv_type, acpi_px_type),
124 DEVMETHOD(cpufreq_drv_settings, acpi_px_settings),
125 {0, 0}
125
126 DEVMETHOD_END
126};
127
128static driver_t acpi_perf_driver = {
129 "acpi_perf",
130 acpi_perf_methods,
131 sizeof(struct acpi_perf_softc),
132};
133

--- 463 unchanged lines hidden ---
127};
128
129static driver_t acpi_perf_driver = {
130 "acpi_perf",
131 acpi_perf_methods,
132 sizeof(struct acpi_perf_softc),
133};
134

--- 463 unchanged lines hidden ---