Deleted Added
full compact
acpi_asus.c (137715) acpi_asus.c (138825)
1/*-
2 * Copyright (c) 2004 Philip Paeps <philip@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) 2004 Philip Paeps <philip@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/acpi_support/acpi_asus.c 137632 2004-11-12 23:21:19Z philip $");
28__FBSDID("$FreeBSD: head/sys/dev/acpi_support/acpi_asus.c 138825 2004-12-13 23:31:46Z njl $");
29
30/*
31 * Driver for extra ACPI-controlled gadgets (hotkeys, leds, etc) found on
32 * recent Asus (and Medion) laptops. Inspired by the acpi4asus project which
33 * implements these features in the Linux kernel.
34 *
35 * <http://sourceforge.net/projects/acpi4asus/>
36 *

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

46#include <sys/module.h>
47#include <sys/bus.h>
48#include <sys/sbuf.h>
49
50#include "acpi.h"
51#include <dev/acpica/acpivar.h>
52#include <dev/led/led.h>
53
29
30/*
31 * Driver for extra ACPI-controlled gadgets (hotkeys, leds, etc) found on
32 * recent Asus (and Medion) laptops. Inspired by the acpi4asus project which
33 * implements these features in the Linux kernel.
34 *
35 * <http://sourceforge.net/projects/acpi4asus/>
36 *

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

46#include <sys/module.h>
47#include <sys/bus.h>
48#include <sys/sbuf.h>
49
50#include "acpi.h"
51#include <dev/acpica/acpivar.h>
52#include <dev/led/led.h>
53
54#define _COMPONENT ACPI_ASUS
54#define _COMPONENT ACPI_OEM
55ACPI_MODULE_NAME("ASUS")
56
57struct acpi_asus_model {
58 char *name;
59
60 char *mled_set;
61 char *tled_set;
62 char *wled_set;

--- 597 unchanged lines hidden ---
55ACPI_MODULE_NAME("ASUS")
56
57struct acpi_asus_model {
58 char *name;
59
60 char *mled_set;
61 char *tled_set;
62 char *wled_set;

--- 597 unchanged lines hidden ---