svn commit: r344292 - head/sys/dev/acpica

Tom Jones thj at FreeBSD.org
Tue Feb 19 19:04:53 UTC 2019


Author: thj
Date: Tue Feb 19 19:04:52 2019
New Revision: 344292
URL: https://svnweb.freebsd.org/changeset/base/344292

Log:
  Fix style after r340832
  
  Reported by:	jhb
  Reviewed by:	jhb, jtl
  Approved by:	jtl (mentor)
  MFC after:	3 days
  Differential Revision:	https://reviews/freebsd.org/D18354

Modified:
  head/sys/dev/acpica/acpi_battery.c

Modified: head/sys/dev/acpica/acpi_battery.c
==============================================================================
--- head/sys/dev/acpica/acpi_battery.c	Tue Feb 19 18:50:20 2019	(r344291)
+++ head/sys/dev/acpica/acpi_battery.c	Tue Feb 19 19:04:52 2019	(r344292)
@@ -172,7 +172,7 @@ acpi_battery_get_battinfo(device_t dev, struct acpi_ba
 	 * Be sure we can get various info from the battery.
 	 */
 	if (ACPI_BATT_GET_STATUS(batt_dev, &bst[i]) != 0 ||
-		ACPI_BATT_GET_INFO(batt_dev, bif) != 0)
+	    ACPI_BATT_GET_INFO(batt_dev, bif) != 0)
 		continue;
 
 	/* If a battery is not installed, we sometimes get strange values. */


More information about the svn-src-head mailing list