mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
panasonic-laptop: fix build
sync with acpi_driver_data(device) and acpi_evaluate_integer(..., long long) changes that happened since this driver was checked in. Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
f1e6d3173e
commit
3e2dab9a1c
@ -252,7 +252,7 @@ static int acpi_pcc_write_sset(struct pcc_acpi *pcc, int func, int val)
|
||||
|
||||
static inline int acpi_pcc_get_sqty(struct acpi_device *device)
|
||||
{
|
||||
unsigned long s;
|
||||
unsigned long long s;
|
||||
acpi_status status;
|
||||
|
||||
ACPI_FUNCTION_TRACE("acpi_pcc_get_sqty");
|
||||
@ -500,7 +500,7 @@ static void acpi_pcc_generate_keyinput(struct pcc_acpi *pcc)
|
||||
struct input_dev *hotk_input_dev = pcc->input_dev;
|
||||
int rc;
|
||||
int key_code, hkey_num;
|
||||
unsigned long result;
|
||||
unsigned long long result;
|
||||
|
||||
ACPI_FUNCTION_TRACE("acpi_pcc_generate_keyinput");
|
||||
|
||||
@ -645,7 +645,7 @@ static int acpi_pcc_hotkey_add(struct acpi_device *device)
|
||||
pcc->device = device;
|
||||
pcc->handle = device->handle;
|
||||
pcc->num_sifr = num_sifr;
|
||||
acpi_driver_data(device) = pcc;
|
||||
device->driver_data = pcc;
|
||||
strcpy(acpi_device_name(device), ACPI_PCC_DEVICE_NAME);
|
||||
strcpy(acpi_device_class(device), ACPI_PCC_CLASS);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user