Deleted Added
full compact
acpi_panasonic.c (202771) acpi_panasonic.c (246128)
1/*-
2 * Copyright (c) 2003 OGAWA Takaya <t-ogawa@triaez.kaisei.org>
3 * Copyright (c) 2004 TAKAHASHI Yoshihiro <nyan@FreeBSD.org>
4 * All rights Reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28
29#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2003 OGAWA Takaya <t-ogawa@triaez.kaisei.org>
3 * Copyright (c) 2004 TAKAHASHI Yoshihiro <nyan@FreeBSD.org>
4 * All rights Reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/acpi_support/acpi_panasonic.c 202771 2010-01-21 21:14:28Z jkim $");
30__FBSDID("$FreeBSD: head/sys/dev/acpi_support/acpi_panasonic.c 246128 2013-01-30 18:01:20Z sbz $");
31
32#include "opt_acpi.h"
33#include <sys/param.h>
34#include <sys/kernel.h>
35#include <sys/malloc.h>
36#include <sys/module.h>
37#include <sys/bus.h>
38#include <sys/power.h>

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

113};
114
115static device_method_t acpi_panasonic_methods[] = {
116 DEVMETHOD(device_probe, acpi_panasonic_probe),
117 DEVMETHOD(device_attach, acpi_panasonic_attach),
118 DEVMETHOD(device_detach, acpi_panasonic_detach),
119 DEVMETHOD(device_shutdown, acpi_panasonic_shutdown),
120
31
32#include "opt_acpi.h"
33#include <sys/param.h>
34#include <sys/kernel.h>
35#include <sys/malloc.h>
36#include <sys/module.h>
37#include <sys/bus.h>
38#include <sys/power.h>

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

113};
114
115static device_method_t acpi_panasonic_methods[] = {
116 DEVMETHOD(device_probe, acpi_panasonic_probe),
117 DEVMETHOD(device_attach, acpi_panasonic_attach),
118 DEVMETHOD(device_detach, acpi_panasonic_detach),
119 DEVMETHOD(device_shutdown, acpi_panasonic_shutdown),
120
121 {0, 0}
121 DEVMETHOD_END
122};
123
124static driver_t acpi_panasonic_driver = {
125 "acpi_panasonic",
126 acpi_panasonic_methods,
127 sizeof(struct acpi_panasonic_softc),
128};
129

--- 386 unchanged lines hidden ---
122};
123
124static driver_t acpi_panasonic_driver = {
125 "acpi_panasonic",
126 acpi_panasonic_methods,
127 sizeof(struct acpi_panasonic_softc),
128};
129

--- 386 unchanged lines hidden ---