summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpi_support/acpi_ibm.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2007-10-25 17:30:18 +0000
committerjhb <jhb@FreeBSD.org>2007-10-25 17:30:18 +0000
commit8165ec91735943c8af061355ff6e3aa31fb6634f (patch)
treea2dade366f6f6ef849fa263a6a1a1edf7e80fd1e /sys/dev/acpi_support/acpi_ibm.c
parent6b490e44447a8ee5dd2bbcbe70e77b8acaa1fb03 (diff)
downloadFreeBSD-src-8165ec91735943c8af061355ff6e3aa31fb6634f.zip
FreeBSD-src-8165ec91735943c8af061355ff6e3aa31fb6634f.tar.gz
Don't attach to the "IBM0057" ID. This ID is used by IBM machines for
the PS/2 mouse controller. Thus, when acpi_ibm(4) claimed the mouse device, the mouse would stop working. The one ACPI dump of an R40 that I've looked at includes an HKEY device with the proper "IBM0068" ID, so I'm not sure how the "IBM0057" ID could have helped at all. MFC after: 1 week Approved by: njl
Diffstat (limited to 'sys/dev/acpi_support/acpi_ibm.c')
-rw-r--r--sys/dev/acpi_support/acpi_ibm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpi_support/acpi_ibm.c b/sys/dev/acpi_support/acpi_ibm.c
index 6eee11f..5d7036d 100644
--- a/sys/dev/acpi_support/acpi_ibm.c
+++ b/sys/dev/acpi_support/acpi_ibm.c
@@ -285,7 +285,7 @@ static devclass_t acpi_ibm_devclass;
DRIVER_MODULE(acpi_ibm, acpi, acpi_ibm_driver, acpi_ibm_devclass,
0, 0);
MODULE_DEPEND(acpi_ibm, acpi, 1, 1, 1);
-static char *ibm_ids[] = {"IBM0057", "IBM0068", NULL};
+static char *ibm_ids[] = {"IBM0068", NULL};
static void
ibm_led(void *softc, int onoff)
OpenPOWER on IntegriCloud