Author: Alexander HallAlexander Hall Date: May 13, 2008 17:57
Simple diff to remove "acpithinkpad: unknown type 7 event 0x000"
warning. Since my kernel hacking knowledge is limited, I'll leave
it at that.
Index: acpithinkpad.c
===================================================================
RCS file: /cvs/src/sys/dev/acpi/acpithinkpad.c,v
retrieving revision 1.1
diff -u -p -r1.1 acpithinkpad.c
--- acpithinkpad.c 27 Apr 2008 16:23:16 -0000 1.1
+++ acpithinkpad.c 14 May 2008 00:51:04 -0000
@@ -63,6 +63,9 @@
#define THINKPAD_TABLET_PEN_INSERTED 0x00b
#define THINKPAD_TABLET_PEN_REMOVED 0x00c
+/* type 7 events */
+#define THINKPAD_WIRELESS_SWITCH 0x000
+
struct acpithinkpad_softc {
struct device sc_dev;
|