Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Apr 2011 20:44:43 +0000 (UTC)
From:      Matthew D Fleming <mdf@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r220871 - head/sys/dev/acpica
Message-ID:  <201104192044.p3JKihYw021765@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mdf
Date: Tue Apr 19 20:44:43 2011
New Revision: 220871
URL: http://svn.freebsd.org/changeset/base/220871

Log:
  Correctly output the entire array for hw.acpi.thermal._ACx.
  
  Reported by:	Taku YAMAMOTO < taku AT tackymt DOT homeip DOT net >
  Tested by:	Nick Ulen < uncle AT wolfman DOT devio DOT us >

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

Modified: head/sys/dev/acpica/acpi_thermal.c
==============================================================================
--- head/sys/dev/acpica/acpi_thermal.c	Tue Apr 19 20:41:00 2011	(r220870)
+++ head/sys/dev/acpica/acpi_thermal.c	Tue Apr 19 20:44:43 2011	(r220871)
@@ -288,7 +288,8 @@ acpi_tz_attach(device_t dev)
 		    "critical temp setpoint (shutdown now)");
     SYSCTL_ADD_PROC(&sc->tz_sysctl_ctx, SYSCTL_CHILDREN(sc->tz_sysctl_tree),
 		    OID_AUTO, "_ACx", CTLTYPE_INT | CTLFLAG_RD,
-		    &sc->tz_zone.ac, 0, sysctl_handle_int, "IK", "");
+		    &sc->tz_zone.ac, sizeof(sc->tz_zone.ac),
+		    sysctl_handle_opaque, "IK", "");
     SYSCTL_ADD_PROC(&sc->tz_sysctl_ctx, SYSCTL_CHILDREN(sc->tz_sysctl_tree),
 		    OID_AUTO, "_TC1", CTLTYPE_INT | CTLFLAG_RW,
 		    sc, offsetof(struct acpi_tz_softc, tz_zone.tc1),



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