#
9108e412 |
| 10-Aug-2022 |
patrick <patrick@openbsd.org> |
Provide the AML root in ACPI's softc so that drivers that need access don't have to declare it using extern.
Suggested by and with feedback from kettenis@ Tested by deraadt@ on arm64, amd64 and i386
Provide the AML root in ACPI's softc so that drivers that need access don't have to declare it using extern.
Suggested by and with feedback from kettenis@ Tested by deraadt@ on arm64, amd64 and i386 Tested by bluhm@ on amd64 and i386
show more ...
|
#
471aeecf |
| 06-Apr-2022 |
naddy <naddy@openbsd.org> |
constify struct cfattach
|
#
21dab745 |
| 14-Mar-2015 |
jsg <jsg@openbsd.org> |
Remove some includes include-what-you-use claims don't have any direct symbols used. Tested for indirect use by compiling amd64/i386/sparc64 kernels.
ok tedu@ deraadt@
|
#
3cb04c65 |
| 21-Aug-2014 |
kspillner <kspillner@openbsd.org> |
Set the sensor's status when docking and undocking, not just its value. With this change sensorsd(8) now correctly detects state changes when docking and undocking.
ok mlarkin@
|
#
e097d8aa |
| 27-Jul-2010 |
jordan <jordan@openbsd.org> |
Add additional Notify handler for dock devices, according to ACPI spec ok marco
|
#
b5fcabd9 |
| 23-Jul-2010 |
jordan <jordan@openbsd.org> |
Fix searchname to handle short name segments, remove hack in acpidock.
|
#
16da9be3 |
| 21-Jul-2010 |
deraadt <deraadt@openbsd.org> |
spacing and indents that are driving me crazy
|
#
4c572add |
| 27-Jun-2010 |
jordan <jordan@openbsd.org> |
Cleanup aml_find_node calls
|
#
4d3c3ef0 |
| 07-Jun-2009 |
mk <mk@openbsd.org> |
Shave surplus space from format string.
|
#
bdc52224 |
| 04-Jun-2009 |
deraadt <deraadt@openbsd.org> |
only one : in a line. the seperation is: deviceX at busX reason-why-we-attached-it: device prints it's junk here
|
#
d3c2a38c |
| 03-Jun-2009 |
jordan <jordan@openbsd.org> |
Don't disable dock devices if dock isn't initially attached ok marco@
|
#
106fb80a |
| 03-Jun-2009 |
jordan <jordan@openbsd.org> |
More KNF ok marco@
|
#
07675d65 |
| 02-Jun-2009 |
jordan <jordan@openbsd.org> |
KNF cleanup and denoise ok marco@
|
#
f402adea |
| 02-Jun-2009 |
jordan <jordan@openbsd.org> |
Added changes for docking station, must eject all children devices ok marco@, mlarkin@
|
#
fd421835 |
| 13-Mar-2009 |
jordan <jordan@openbsd.org> |
Fixup in acpidock for aml_evalinteger Reported by guenther ok marco@
|
#
a95d1b72 |
| 11-Mar-2009 |
jordan <jordan@openbsd.org> |
Cleanup.. use aml_evalinteger instead of aml_evalname ok marco@
|
#
3b455a03 |
| 01-Jun-2008 |
marco <marco@openbsd.org> |
Re-enable new parser. Lots of testing by various folks. Fits all media now too.
ok kettenis deraadt
|
#
164c5214 |
| 16-May-2008 |
dlg <dlg@openbsd.org> |
back out jordans new parser.
it didnt have enough oks from the right people, it did break machines that were previously working, and it bloated the RAMDISKS and install media beyond the constraints
back out jordans new parser.
it didnt have enough oks from the right people, it did break machines that were previously working, and it bloated the RAMDISKS and install media beyond the constraints of the media.
requested by deraadt@
show more ...
|
#
54039988 |
| 14-May-2008 |
jordan <jordan@openbsd.org> |
Adding new ACPI Parser code Old guts of code still exists, needs to be torn out next ok marco@ ok brad@
|
#
7241774b |
| 12-Nov-2007 |
deraadt <deraadt@openbsd.org> |
spacing
|
#
7979ca52 |
| 13-Sep-2007 |
weingart <weingart@openbsd.org> |
Implement ACPI 6.5.1 spec tree walk for _STA and _INI. Fixes mk's laptop. No regressions so far (thank you to the testers).
ok gwk@, mk@, marco@
|
#
77d6f5e3 |
| 23-Apr-2007 |
mk <mk@openbsd.org> |
When receiving an undock request, walk the list of dependant devices and pull their _EJ0 knobs before undocking. This ejects any dependant devices (if necessary) before actually undocking.
Without
When receiving an undock request, walk the list of dependant devices and pull their _EJ0 knobs before undocking. This ejects any dependant devices (if necessary) before actually undocking.
Without this, the usb hub in my X6 gets upset when it's suddenly kicked off the system without warning, and upon redocking it attaches as uberry. Now it's behaving as it should.
show more ...
|
#
3f348e33 |
| 23-Apr-2007 |
mk <mk@openbsd.org> |
When adding a device node to the list of dependant devices, don't add the _EJD node. Instead, add the parent actual device node instead which makes more sense and makes sure that it doesn't matter i
When adding a device node to the list of dependant devices, don't add the _EJD node. Instead, add the parent actual device node instead which makes more sense and makes sure that it doesn't matter if the _EJ0 node under a device node comes before the _EJD node.
show more ...
|
#
4ee99e23 |
| 23-Apr-2007 |
mk <mk@openbsd.org> |
In acpidock_softc, change sc_sens from being a one element long array to simply being a single struct ksensor.
|
#
ffd69664 |
| 22-Apr-2007 |
mk <mk@openbsd.org> |
Remove unnecessary local variable in acpidock_status() and kill an XXX by using STA_PRESENT instead of home-brewed value.
|