···143143static int acpi_pci_find_device(struct device *dev, acpi_handle *handle)144144{145145 struct pci_dev * pci_dev;146146- acpi_integer addr;146146+ u64 addr;147147148148 pci_dev = to_pci_dev(dev);149149 /* Please ref to ACPI spec for the syntax of _ADR */
+2-2
drivers/platform/x86/toshiba_bluetooth.c
···5757static int toshiba_bluetooth_enable(acpi_handle handle)5858{5959 acpi_status res1, res2;6060- acpi_integer result;6060+ u64 result;61616262 /*6363 * Query ACPI to verify RFKill switch is set to 'on'.···9595static int toshiba_bt_rfkill_add(struct acpi_device *device)9696{9797 acpi_status status;9898- acpi_integer bt_present;9898+ u64 bt_present;9999 int result = -ENODEV;100100101101 /*
+2-2
drivers/platform/x86/wmi.c
···796796 */797797static acpi_status798798acpi_wmi_ec_space_handler(u32 function, acpi_physical_address address,799799- u32 bits, acpi_integer * value,799799+ u32 bits, u64 *value,800800 void *handler_context, void *region_context)801801{802802 int result = 0, i = 0;···813813814814 if (function == ACPI_READ) {815815 result = ec_read(address, &temp);816816- (*value) |= ((acpi_integer)temp) << i;816816+ (*value) |= ((u64)temp) << i;817817 } else {818818 temp = 0xff & ((*value) >> i);819819 result = ec_write(address, temp);