<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/acpi_support, branch releng/8.0</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>MFC 197415:</title>
<updated>2009-09-25T15:14:11+00:00</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2009-09-25T15:14:11+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=424b2e64a2799aca632f73788043e9a738de1e79'/>
<id>424b2e64a2799aca632f73788043e9a738de1e79</id>
<content type='text'>
The elements in the component arrays may be direct Package objects rather
than references to objects.  In that case, simply use the Package directly.

Approved by:	re (kib)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The elements in the component arrays may be direct Package objects rather
than references to objects.  In that case, simply use the Package directly.

Approved by:	re (kib)
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC 197350:</title>
<updated>2009-09-23T15:56:09+00:00</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2009-09-23T15:56:09+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4e36c32793ae7823c2366793663cc90caee41506'/>
<id>4e36c32793ae7823c2366793663cc90caee41506</id>
<content type='text'>
Re-remove the IBM0057 ID used for PS/2 mouse controllers.  The asl for the
61p includes the hotkey device as IBM0068 and the mouse as IBM0057 similar
to other systems.

Approved by:	re (kensmith)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Re-remove the IBM0057 ID used for PS/2 mouse controllers.  The asl for the
61p includes the hotkey device as IBM0068 and the mouse as IBM0057 similar
to other systems.

Approved by:	re (kensmith)
</pre>
</div>
</content>
</entry>
<entry>
<title>acpi_hp.c:</title>
<updated>2009-07-03T21:12:37+00:00</updated>
<author>
<name>Rui Paulo</name>
<email>rpaulo@FreeBSD.org</email>
</author>
<published>2009-07-03T21:12:37+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=9e760f2578249fbdffff2bc90b86f16b2f6b8f69'/>
<id>9e760f2578249fbdffff2bc90b86f16b2f6b8f69</id>
<content type='text'>
- sysctl dev.acpi_hp.0.verbose to toggle debug output
- A modification so this can deal with different array lengths
  when reading the CMI BIOS - now it works ok on HP Compaq nx7300
  as well.
- Change behaviour to query only max_instance-1 CMI BIOS instances,
  because all HPs seen so far are broken in that respect
  (or there is a fundamental misunderstanding on my side, possible
  as well). This way a disturbing ACPI Error Field exceeds Buffer
  message is avoided.
- New bit to set on dev.acpi_hp.0.cmi_detail (0x8) to
  also query the highest guid instance of CMI bios

acpi_hp.4:
- Document dev.acpi_hp.0.verbose sysctl in man page
- Document new bit for dev.acpi_hp.0.cmi_detail
- Add a section to manpage about hardware that has been reported
  to work ok

Submitted by:	Michael Gmelin &lt;freebsdusb at bindone.de&gt;
Approved by:	re (kib)
MFC after:	2 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- sysctl dev.acpi_hp.0.verbose to toggle debug output
- A modification so this can deal with different array lengths
  when reading the CMI BIOS - now it works ok on HP Compaq nx7300
  as well.
- Change behaviour to query only max_instance-1 CMI BIOS instances,
  because all HPs seen so far are broken in that respect
  (or there is a fundamental misunderstanding on my side, possible
  as well). This way a disturbing ACPI Error Field exceeds Buffer
  message is avoided.
- New bit to set on dev.acpi_hp.0.cmi_detail (0x8) to
  also query the highest guid instance of CMI bios

acpi_hp.4:
- Document dev.acpi_hp.0.verbose sysctl in man page
- Document new bit for dev.acpi_hp.0.cmi_detail
- Add a section to manpage about hardware that has been reported
  to work ok

Submitted by:	Michael Gmelin &lt;freebsdusb at bindone.de&gt;
Approved by:	re (kib)
MFC after:	2 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>acpi_wmi_if:</title>
<updated>2009-06-30T09:51:41+00:00</updated>
<author>
<name>Rui Paulo</name>
<email>rpaulo@FreeBSD.org</email>
</author>
<published>2009-06-30T09:51:41+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=0f73b657a972bc47ca9ee82757e5e1c942984547'/>
<id>0f73b657a972bc47ca9ee82757e5e1c942984547</id>
<content type='text'>
- Document different semantics for ACPI_WMI_PROVIDES_GUID_STRING_METHOD

acpi_wmi.c:
- Modify acpi_wmi_provides_guid_string_method to return absolut number of
  instances known for the given GUID.

acpi_hp.c:
- sysctl dev.acpi_hp.0.verbose to toggle debug output
- A modification so this can deal with different array lengths
  when reading the CMI BIOS - now it works ok on HP Compaq nx7300
  as well.
- Change behaviour to query only max_instance-1 CMI BIOS instances,
  because all HPs seen so far are broken in that respect
  (or there is a fundamental misunderstanding on my side, possible
  as well). This way a disturbing ACPI Error Field exceeds Buffer
  message is avoided.
- New bit to set on dev.acpi_hp.0.cmi_detail (0x8) to
  also query the highest guid instance of CMI bios

acpi_hp.4:
- Document dev.acpi_hp.0.verbose sysctl in man page
- Document new bit for dev.acpi_hp.0.cmi_detail
- Add a section to manpage about hardware that has been reported
  to work ok

Submitted by:	Michael Gmelin, freebsdusb at bindone.de
Approved by:	re (kib)
MFC after:	2 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Document different semantics for ACPI_WMI_PROVIDES_GUID_STRING_METHOD

acpi_wmi.c:
- Modify acpi_wmi_provides_guid_string_method to return absolut number of
  instances known for the given GUID.

acpi_hp.c:
- sysctl dev.acpi_hp.0.verbose to toggle debug output
- A modification so this can deal with different array lengths
  when reading the CMI BIOS - now it works ok on HP Compaq nx7300
  as well.
- Change behaviour to query only max_instance-1 CMI BIOS instances,
  because all HPs seen so far are broken in that respect
  (or there is a fundamental misunderstanding on my side, possible
  as well). This way a disturbing ACPI Error Field exceeds Buffer
  message is avoided.
- New bit to set on dev.acpi_hp.0.cmi_detail (0x8) to
  also query the highest guid instance of CMI bios

acpi_hp.4:
- Document dev.acpi_hp.0.verbose sysctl in man page
- Document new bit for dev.acpi_hp.0.cmi_detail
- Add a section to manpage about hardware that has been reported
  to work ok

Submitted by:	Michael Gmelin, freebsdusb at bindone.de
Approved by:	re (kib)
MFC after:	2 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix build with ACPI_DEBUG.</title>
<updated>2009-06-23T15:08:03+00:00</updated>
<author>
<name>Rui Paulo</name>
<email>rpaulo@FreeBSD.org</email>
</author>
<published>2009-06-23T15:08:03+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=07bed1516d1bd7cb181ee76872018d50158a0747'/>
<id>07bed1516d1bd7cb181ee76872018d50158a0747</id>
<content type='text'>
MFC after:	2 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MFC after:	2 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>* Driver for ACPI WMI (Windows Management Instrumentation)</title>
<updated>2009-06-23T13:17:25+00:00</updated>
<author>
<name>Rui Paulo</name>
<email>rpaulo@FreeBSD.org</email>
</author>
<published>2009-06-23T13:17:25+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=df849145b5f98e0d2667cf7775fc1cab7c001640'/>
<id>df849145b5f98e0d2667cf7775fc1cab7c001640</id>
<content type='text'>
* Driver for ACPI HP extra functionations, which required
  ACPI WMI driver.

Submitted by:	Michael &lt;freebsdusb at bindone.de&gt;
Approved by:	re
MFC after:	2 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Driver for ACPI HP extra functionations, which required
  ACPI WMI driver.

Submitted by:	Michael &lt;freebsdusb at bindone.de&gt;
Approved by:	re
MFC after:	2 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>Import ACPICA 20090521.</title>
<updated>2009-06-05T18:44:36+00:00</updated>
<author>
<name>Jung-uk Kim</name>
<email>jkim@FreeBSD.org</email>
</author>
<published>2009-06-05T18:44:36+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=129d3046ef0427d3b22b78a71f3494854d817fba'/>
<id>129d3046ef0427d3b22b78a71f3494854d817fba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused variables.</title>
<updated>2009-05-12T23:22:58+00:00</updated>
<author>
<name>Christian Brueffer</name>
<email>brueffer@FreeBSD.org</email>
</author>
<published>2009-05-12T23:22:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e831cd36d0fada153e43523e0c6b2a2e448a16f8'/>
<id>e831cd36d0fada153e43523e0c6b2a2e448a16f8</id>
<content type='text'>
Found with:	Coverity Prevent(tm)
CID:		544, 545
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Found with:	Coverity Prevent(tm)
CID:		544, 545
</pre>
</div>
</content>
</entry>
<entry>
<title>- Add the support for the Asus A3F and A3E device</title>
<updated>2009-04-04T17:01:32+00:00</updated>
<author>
<name>Attilio Rao</name>
<email>attilio@FreeBSD.org</email>
</author>
<published>2009-04-04T17:01:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4060f1bbd0a6ed69dcd934c48575a7748bf01527'/>
<id>4060f1bbd0a6ed69dcd934c48575a7748bf01527</id>
<content type='text'>
- Fix style for A3N and for a comment

Submitted by:	Akira Funahashi &lt;funa@funa.org&gt;
Tested by:	Marcin Nowak &lt;marcin.nowak@simplusnet.pl&gt;,
		Diego Sardina &lt;diego.sardina@gmx.com&gt;
PR:		kern/128634
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Fix style for A3N and for a comment

Submitted by:	Akira Funahashi &lt;funa@funa.org&gt;
Tested by:	Marcin Nowak &lt;marcin.nowak@simplusnet.pl&gt;,
		Diego Sardina &lt;diego.sardina@gmx.com&gt;
PR:		kern/128634
</pre>
</div>
</content>
</entry>
<entry>
<title>device_shutdown returns int.</title>
<updated>2009-02-05T18:39:33+00:00</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2009-02-05T18:39:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e3545bcc26f7d61257e9e7ceb8efb73267d3578a'/>
<id>e3545bcc26f7d61257e9e7ceb8efb73267d3578a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
