Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Jan 2020 19:43:46 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356764 - in head: share/man/man4 sys/dev/acpi_support
Message-ID:  <202001151943.00FJhkqR007013@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001151943.00FJhkqR007013>