linux/drivers/staging/pcc-acpi
Linus Torvalds f3161f36f5 pcc-acpi: fix compile with new stricter ACPI types
This was another merge problem that wasn't a data conflict, but due to
independent changes in two branches that just didn't work together.

The pcc-acpi staging driver used

	acpi_driver_data(device) = hotkey;

to set driver data, but the ACPI merge made that invalid in commit
db89b4f0db ("ACPI: catch calls of
acpi_driver_data on pointer of wrong type"), and now you're supposed to
just do.

	device->driver_data = hotkey;

instead.

Fix it up.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-10-23 11:54:08 -07:00
..
Kconfig Staging: add pcc-acpi driver 2008-10-22 09:56:28 -07:00
Makefile Staging: add pcc-acpi driver 2008-10-22 09:56:28 -07:00
TODO Staging: add pcc-acpi driver 2008-10-22 09:56:28 -07:00
pcc-acpi.c pcc-acpi: fix compile with new stricter ACPI types 2008-10-23 11:54:08 -07:00