Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Feb 2016 22:22:16 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r295935 - head/sys/dev/acpica
Message-ID:  <201602232222.u1NMMGAL057647@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jkim
Date: Tue Feb 23 22:22:15 2016
New Revision: 295935
URL: https://svnweb.freebsd.org/changeset/base/295935

Log:
  Fix style(9) bugs.

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

Modified: head/sys/dev/acpica/acpi_video.c
==============================================================================
--- head/sys/dev/acpica/acpi_video.c	Tue Feb 23 22:02:25 2016	(r295934)
+++ head/sys/dev/acpica/acpi_video.c	Tue Feb 23 22:22:15 2016	(r295935)
@@ -602,14 +602,16 @@ acpi_video_vo_bind(struct acpi_video_out
 	vo->handle = handle;
 	vo->vo_numlevels = vo_get_brightness_levels(handle, &vo->vo_levels);
 	if (vo->vo_numlevels >= 2) {
-		if (vo->vo_fullpower == -1
-		    || acpi_video_vo_check_level(vo, vo->vo_fullpower) != 0)
+		if (vo->vo_fullpower == -1 ||
+		    acpi_video_vo_check_level(vo, vo->vo_fullpower) != 0) {
 			/* XXX - can't deal with rebinding... */
 			vo->vo_fullpower = vo->vo_levels[BCL_FULLPOWER];
-		if (vo->vo_economy == -1
-		    || acpi_video_vo_check_level(vo, vo->vo_economy) != 0)
+		}
+		if (vo->vo_economy == -1 ||
+			acpi_video_vo_check_level(vo, vo->vo_economy) != 0) {
 			/* XXX - see above. */
 			vo->vo_economy = vo->vo_levels[BCL_ECONOMY];
+		}
 	}
 	if (vo->vo_levels != NULL)
 		AcpiInstallNotifyHandler(handle, ACPI_DEVICE_NOTIFY,



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