diff options
Diffstat (limited to 'drivers/acpi/button.c')
| -rw-r--r-- | drivers/acpi/button.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c index 1dfec413588..9d568d417ea 100644 --- a/drivers/acpi/button.c +++ b/drivers/acpi/button.c | |||
| @@ -145,7 +145,7 @@ static int acpi_button_state_seq_show(struct seq_file *seq, void *offset) | |||
| 145 | { | 145 | { |
| 146 | struct acpi_button *button = seq->private; | 146 | struct acpi_button *button = seq->private; |
| 147 | acpi_status status; | 147 | acpi_status status; |
| 148 | unsigned long state; | 148 | unsigned long long state; |
| 149 | 149 | ||
| 150 | if (!button || !button->device) | 150 | if (!button || !button->device) |
| 151 | return 0; | 151 | return 0; |
| @@ -253,7 +253,7 @@ static int acpi_button_remove_fs(struct acpi_device *device) | |||
| 253 | -------------------------------------------------------------------------- */ | 253 | -------------------------------------------------------------------------- */ |
| 254 | static int acpi_lid_send_state(struct acpi_button *button) | 254 | static int acpi_lid_send_state(struct acpi_button *button) |
| 255 | { | 255 | { |
| 256 | unsigned long state; | 256 | unsigned long long state; |
| 257 | acpi_status status; | 257 | acpi_status status; |
| 258 | 258 | ||
| 259 | status = acpi_evaluate_integer(button->device->handle, "_LID", NULL, | 259 | status = acpi_evaluate_integer(button->device->handle, "_LID", NULL, |
| @@ -384,7 +384,7 @@ static int acpi_button_add(struct acpi_device *device) | |||
| 384 | return -ENOMEM; | 384 | return -ENOMEM; |
| 385 | 385 | ||
| 386 | button->device = device; | 386 | button->device = device; |
| 387 | acpi_driver_data(device) = button; | 387 | device->driver_data = button; |
| 388 | 388 | ||
| 389 | button->input = input = input_allocate_device(); | 389 | button->input = input = input_allocate_device(); |
| 390 | if (!input) { | 390 | if (!input) { |
