From 8c5cb4ce2571e2ffb29ff258ee5a5dd90a2e04ec Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Wed, 15 Jan 2020 19:43:45 +0000 Subject: acpi_ibm: reference ThinkPad instead of IBM These are now Lenovo ThinkPads, not IBM ThinkPads. PR: 234403 Submitted by: Kevin Zheng (original) --- sys/dev/acpi_support/acpi_ibm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/acpi_support/acpi_ibm.c b/sys/dev/acpi_support/acpi_ibm.c index 67f148fba06b..20dd9c83d89d 100644 --- a/sys/dev/acpi_support/acpi_ibm.c +++ b/sys/dev/acpi_support/acpi_ibm.c @@ -29,7 +29,7 @@ __FBSDID("$FreeBSD$"); /* - * Driver for extra ACPI-controlled gadgets found on IBM ThinkPad laptops. + * Driver for extra ACPI-controlled gadgets found on ThinkPad laptops. * Inspired by the ibm-acpi and tpb projects which implement these features * on Linux. * @@ -302,7 +302,7 @@ struct acpi_ibm_models { } }; -ACPI_SERIAL_DECL(ibm, "ACPI IBM extras"); +ACPI_SERIAL_DECL(ibm, "ThinkPad ACPI Extras"); static int acpi_ibm_probe(device_t dev); static int acpi_ibm_attach(device_t dev); @@ -419,7 +419,7 @@ acpi_ibm_probe(device_t dev) rv = ACPI_ID_PROBE(device_get_parent(dev), dev, ibm_ids, NULL); if (rv <= 0) - device_set_desc(dev, "IBM ThinkPad ACPI Extras"); + device_set_desc(dev, "ThinkPad ACPI Extras"); return (rv); } -- cgit v1.3