svn commit: r356764 - in head: share/man/man4 sys/dev/acpi_support

Ed Maste emaste at FreeBSD.org
Wed Jan 15 19:43:46 UTC 2020


Author: emaste
Date: Wed Jan 15 19:43:45 2020
New Revision: 356764
URL: https://svnweb.freebsd.org/changeset/base/356764

Log:
  acpi_ibm: reference ThinkPad instead of IBM
  
  These are now Lenovo ThinkPads, not IBM ThinkPads.
  
  PR:		234403
  Submitted by:	Kevin Zheng <kevinz5000 at gmail.com> (original)

Modified:
  head/share/man/man4/acpi_ibm.4
  head/sys/dev/acpi_support/acpi_ibm.c

Modified: head/share/man/man4/acpi_ibm.4
==============================================================================
--- head/share/man/man4/acpi_ibm.4	Wed Jan 15 18:53:32 2020	(r356763)
+++ head/share/man/man4/acpi_ibm.4	Wed Jan 15 19:43:45 2020	(r356764)
@@ -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

Modified: head/sys/dev/acpi_support/acpi_ibm.c
==============================================================================
--- head/sys/dev/acpi_support/acpi_ibm.c	Wed Jan 15 18:53:32 2020	(r356763)
+++ head/sys/dev/acpi_support/acpi_ibm.c	Wed Jan 15 19:43:45 2020	(r356764)
@@ -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);
 }


More information about the svn-src-all mailing list