svn commit: r202793 - stable/7/sys/dev/acpica

Andriy Gapon avg at FreeBSD.org
Fri Jan 22 09:42:42 UTC 2010


Author: avg
Date: Fri Jan 22 09:42:41 2010
New Revision: 202793
URL: http://svn.freebsd.org/changeset/base/202793

Log:
  MFC r202567: acpi_ec: remove redundant acpi_disabled check

Modified:
  stable/7/sys/dev/acpica/acpi_ec.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/dev/acpica/acpi_ec.c
==============================================================================
--- stable/7/sys/dev/acpica/acpi_ec.c	Fri Jan 22 09:41:09 2010	(r202792)
+++ stable/7/sys/dev/acpica/acpi_ec.c	Fri Jan 22 09:42:41 2010	(r202793)
@@ -364,8 +364,7 @@ acpi_ec_probe(device_t dev)
     if (params != NULL) {
 	ecdt = 1;
 	ret = 0;
-    } else if (!acpi_disabled("ec") &&
-	ACPI_ID_PROBE(device_get_parent(dev), dev, ec_ids)) {
+    } else if (ACPI_ID_PROBE(device_get_parent(dev), dev, ec_ids)) {
 	params = malloc(sizeof(struct acpi_ec_params), M_TEMP,
 			M_WAITOK | M_ZERO);
 	h = acpi_get_handle(dev);


More information about the svn-src-stable-7 mailing list