diff options
| -rw-r--r-- | share/man/man4/acpi_ibm.4 | 4 | ||||
| -rw-r--r-- | sys/dev/acpi_support/acpi_ibm.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man4/acpi_ibm.4 b/share/man/man4/acpi_ibm.4 index 535fad07d998..87ecb4157fcf 100644 --- a/share/man/man4/acpi_ibm.4 +++ b/share/man/man4/acpi_ibm.4 @@ -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 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); } |
