acpi_ibm: reference ThinkPad instead of IBM

These are now Lenovo ThinkPads, not IBM ThinkPads.

PR:		234403
Submitted by:	Kevin Zheng <kevinz5000@gmail.com> (original)
This commit is contained in:
emaste 2020-01-15 19:43:45 +00:00
parent f0f1ba03a4
commit f4baf8a4c7
2 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@
.Os
.Sh NAME
.Nm acpi_ibm
.Nd "ACPI extras driver for IBM laptops"
.Nd "ThinkPad ACPI extras driver"
.Sh SYNOPSIS
To compile this driver into the kernel,
place the following line in your
@ -48,7 +48,7 @@ acpi_ibm_load="YES"
.Sh DESCRIPTION
The
.Nm
driver provides support for hotkeys and other components of IBM laptops.
driver provides support for hotkeys and other components of ThinkPad laptops.
The main purpose of this driver is to provide an interface,
accessible via
.Xr sysctl 8

View File

@ -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);
}