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
db89b4f0dbab837d0f3de2c3e9427a8d5393afa3 ("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>

+1 -1
+1 -1
drivers/staging/pcc-acpi/pcc-acpi.c
··· 1011 1011 hotkey->device = device; 1012 1012 hotkey->handle = device->handle; 1013 1013 hotkey->num_sifr = num_sifr; 1014 - acpi_driver_data(device) = hotkey; 1014 + device->driver_data = hotkey; 1015 1015 strcpy(acpi_device_name(device), ACPI_PCC_DEVICE_NAME); 1016 1016 strcpy(acpi_device_class(device), ACPI_PCC_CLASS); 1017 1017