diff options
| -rw-r--r-- | drivers/acpi/ac.c | 2 | ||||
| -rw-r--r-- | drivers/acpi/battery.c | 2 | ||||
| -rw-r--r-- | drivers/acpi/button.c | 2 | ||||
| -rw-r--r-- | drivers/acpi/dock.c | 8 | ||||
| -rw-r--r-- | drivers/acpi/fan.c | 3 | ||||
| -rw-r--r-- | drivers/acpi/pci_irq.c | 1 | ||||
| -rw-r--r-- | drivers/acpi/sbs.c | 4 | ||||
| -rw-r--r-- | drivers/acpi/thermal.c | 2 | ||||
| -rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_acpi.c | 26 |
9 files changed, 42 insertions, 8 deletions
diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c index e7515aa43d6b..6f190bc2b8b7 100644 --- a/drivers/acpi/ac.c +++ b/drivers/acpi/ac.c | |||
| @@ -243,6 +243,8 @@ static int acpi_ac_resume(struct device *dev) | |||
| 243 | kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE); | 243 | kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE); |
| 244 | return 0; | 244 | return 0; |
| 245 | } | 245 | } |
| 246 | #else | ||
| 247 | #define acpi_ac_resume NULL | ||
| 246 | #endif | 248 | #endif |
| 247 | static SIMPLE_DEV_PM_OPS(acpi_ac_pm_ops, NULL, acpi_ac_resume); | 249 | static SIMPLE_DEV_PM_OPS(acpi_ac_pm_ops, NULL, acpi_ac_resume); |
| 248 | 250 | ||
diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c index 018a42883706..797a6938d051 100644 --- a/drivers/acpi/battery.c +++ b/drivers/acpi/battery.c | |||
| @@ -841,6 +841,8 @@ static int acpi_battery_resume(struct device *dev) | |||
| 841 | acpi_battery_update(battery); | 841 | acpi_battery_update(battery); |
| 842 | return 0; | 842 | return 0; |
| 843 | } | 843 | } |
| 844 | #else | ||
| 845 | #define acpi_battery_resume NULL | ||
| 844 | #endif | 846 | #endif |
| 845 | 847 | ||
| 846 | static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume); | 848 | static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume); |
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c index 11c11f6b8fa1..714e957a871a 100644 --- a/drivers/acpi/button.c +++ b/drivers/acpi/button.c | |||
| @@ -80,6 +80,8 @@ static void acpi_button_notify(struct acpi_device *device, u32 event); | |||
| 80 | 80 | ||
| 81 | #ifdef CONFIG_PM_SLEEP | 81 | #ifdef CONFIG_PM_SLEEP |
| 82 | static int acpi_button_resume(struct device *dev); | 82 | static int acpi_button_resume(struct device *dev); |
| 83 | #else | ||
| 84 | #define acpi_button_resume NULL | ||
| 83 | #endif | 85 | #endif |
| 84 | static SIMPLE_DEV_PM_OPS(acpi_button_pm, NULL, acpi_button_resume); | 86 | static SIMPLE_DEV_PM_OPS(acpi_button_pm, NULL, acpi_button_resume); |
| 85 | 87 | ||
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c index e9b3081c4fe9..5bfd769fc91f 100644 --- a/drivers/acpi/dock.c +++ b/drivers/acpi/dock.c | |||
| @@ -713,13 +713,11 @@ static acpi_status __init find_dock_devices(acpi_handle handle, u32 lvl, | |||
| 713 | static ssize_t show_docked(struct device *dev, | 713 | static ssize_t show_docked(struct device *dev, |
| 714 | struct device_attribute *attr, char *buf) | 714 | struct device_attribute *attr, char *buf) |
| 715 | { | 715 | { |
| 716 | struct acpi_device *tmp; | ||
| 717 | |||
| 718 | struct dock_station *dock_station = dev->platform_data; | 716 | struct dock_station *dock_station = dev->platform_data; |
| 717 | struct acpi_device *adev = NULL; | ||
| 719 | 718 | ||
| 720 | if (!acpi_bus_get_device(dock_station->handle, &tmp)) | 719 | acpi_bus_get_device(dock_station->handle, &adev); |
| 721 | return snprintf(buf, PAGE_SIZE, "1\n"); | 720 | return snprintf(buf, PAGE_SIZE, "%u\n", acpi_device_enumerated(adev)); |
| 722 | return snprintf(buf, PAGE_SIZE, "0\n"); | ||
| 723 | } | 721 | } |
| 724 | static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL); | 722 | static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL); |
| 725 | 723 | ||
diff --git a/drivers/acpi/fan.c b/drivers/acpi/fan.c index 1fb62900f32a..09e423f3d8ad 100644 --- a/drivers/acpi/fan.c +++ b/drivers/acpi/fan.c | |||
| @@ -55,6 +55,9 @@ MODULE_DEVICE_TABLE(acpi, fan_device_ids); | |||
| 55 | #ifdef CONFIG_PM_SLEEP | 55 | #ifdef CONFIG_PM_SLEEP |
| 56 | static int acpi_fan_suspend(struct device *dev); | 56 | static int acpi_fan_suspend(struct device *dev); |
| 57 | static int acpi_fan_resume(struct device *dev); | 57 | static int acpi_fan_resume(struct device *dev); |
| 58 | #else | ||
| 59 | #define acpi_fan_suspend NULL | ||
| 60 | #define acpi_fan_resume NULL | ||
| 58 | #endif | 61 | #endif |
| 59 | static SIMPLE_DEV_PM_OPS(acpi_fan_pm, acpi_fan_suspend, acpi_fan_resume); | 62 | static SIMPLE_DEV_PM_OPS(acpi_fan_pm, acpi_fan_suspend, acpi_fan_resume); |
| 60 | 63 | ||
diff --git a/drivers/acpi/pci_irq.c b/drivers/acpi/pci_irq.c index 52d45ea2bc4f..361b40c10c3f 100644 --- a/drivers/acpi/pci_irq.c +++ b/drivers/acpi/pci_irq.c | |||
| @@ -430,6 +430,7 @@ int acpi_pci_irq_enable(struct pci_dev *dev) | |||
| 430 | pin_name(pin)); | 430 | pin_name(pin)); |
| 431 | } | 431 | } |
| 432 | 432 | ||
| 433 | kfree(entry); | ||
| 433 | return 0; | 434 | return 0; |
| 434 | } | 435 | } |
| 435 | 436 | ||
diff --git a/drivers/acpi/sbs.c b/drivers/acpi/sbs.c index d465ae6cdd00..dbd48498b938 100644 --- a/drivers/acpi/sbs.c +++ b/drivers/acpi/sbs.c | |||
| @@ -450,7 +450,7 @@ static ssize_t acpi_battery_alarm_store(struct device *dev, | |||
| 450 | { | 450 | { |
| 451 | unsigned long x; | 451 | unsigned long x; |
| 452 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); | 452 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); |
| 453 | if (sscanf(buf, "%ld\n", &x) == 1) | 453 | if (sscanf(buf, "%lu\n", &x) == 1) |
| 454 | battery->alarm_capacity = x / | 454 | battery->alarm_capacity = x / |
| 455 | (1000 * acpi_battery_scale(battery)); | 455 | (1000 * acpi_battery_scale(battery)); |
| 456 | if (battery->present) | 456 | if (battery->present) |
| @@ -668,6 +668,8 @@ static int acpi_sbs_resume(struct device *dev) | |||
| 668 | acpi_sbs_callback(sbs); | 668 | acpi_sbs_callback(sbs); |
| 669 | return 0; | 669 | return 0; |
| 670 | } | 670 | } |
| 671 | #else | ||
| 672 | #define acpi_sbs_resume NULL | ||
| 671 | #endif | 673 | #endif |
| 672 | 674 | ||
| 673 | static SIMPLE_DEV_PM_OPS(acpi_sbs_pm, NULL, acpi_sbs_resume); | 675 | static SIMPLE_DEV_PM_OPS(acpi_sbs_pm, NULL, acpi_sbs_resume); |
diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c index 8349a555b92b..08626c851be7 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c | |||
| @@ -102,6 +102,8 @@ MODULE_DEVICE_TABLE(acpi, thermal_device_ids); | |||
| 102 | 102 | ||
| 103 | #ifdef CONFIG_PM_SLEEP | 103 | #ifdef CONFIG_PM_SLEEP |
| 104 | static int acpi_thermal_resume(struct device *dev); | 104 | static int acpi_thermal_resume(struct device *dev); |
| 105 | #else | ||
| 106 | #define acpi_thermal_resume NULL | ||
| 105 | #endif | 107 | #endif |
| 106 | static SIMPLE_DEV_PM_OPS(acpi_thermal_pm, NULL, acpi_thermal_resume); | 108 | static SIMPLE_DEV_PM_OPS(acpi_thermal_pm, NULL, acpi_thermal_resume); |
| 107 | 109 | ||
diff --git a/drivers/gpu/drm/nouveau/nouveau_acpi.c b/drivers/gpu/drm/nouveau/nouveau_acpi.c index 4ef83df2b246..83face3f608f 100644 --- a/drivers/gpu/drm/nouveau/nouveau_acpi.c +++ b/drivers/gpu/drm/nouveau/nouveau_acpi.c | |||
| @@ -106,6 +106,29 @@ static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t * | |||
| 106 | return 0; | 106 | return 0; |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | /* | ||
| 110 | * On some platforms, _DSM(nouveau_op_dsm_muid, func0) has special | ||
| 111 | * requirements on the fourth parameter, so a private implementation | ||
| 112 | * instead of using acpi_check_dsm(). | ||
| 113 | */ | ||
| 114 | static int nouveau_check_optimus_dsm(acpi_handle handle) | ||
| 115 | { | ||
| 116 | int result; | ||
| 117 | |||
| 118 | /* | ||
| 119 | * Function 0 returns a Buffer containing available functions. | ||
| 120 | * The args parameter is ignored for function 0, so just put 0 in it | ||
| 121 | */ | ||
| 122 | if (nouveau_optimus_dsm(handle, 0, 0, &result)) | ||
| 123 | return 0; | ||
| 124 | |||
| 125 | /* | ||
| 126 | * ACPI Spec v4 9.14.1: if bit 0 is zero, no function is supported. | ||
| 127 | * If the n-th bit is enabled, function n is supported | ||
| 128 | */ | ||
| 129 | return result & 1 && result & (1 << NOUVEAU_DSM_OPTIMUS_CAPS); | ||
| 130 | } | ||
| 131 | |||
| 109 | static int nouveau_dsm(acpi_handle handle, int func, int arg) | 132 | static int nouveau_dsm(acpi_handle handle, int func, int arg) |
| 110 | { | 133 | { |
| 111 | int ret = 0; | 134 | int ret = 0; |
| @@ -207,8 +230,7 @@ static int nouveau_dsm_pci_probe(struct pci_dev *pdev) | |||
| 207 | 1 << NOUVEAU_DSM_POWER)) | 230 | 1 << NOUVEAU_DSM_POWER)) |
| 208 | retval |= NOUVEAU_DSM_HAS_MUX; | 231 | retval |= NOUVEAU_DSM_HAS_MUX; |
| 209 | 232 | ||
| 210 | if (acpi_check_dsm(dhandle, nouveau_op_dsm_muid, 0x00000100, | 233 | if (nouveau_check_optimus_dsm(dhandle)) |
| 211 | 1 << NOUVEAU_DSM_OPTIMUS_CAPS)) | ||
| 212 | retval |= NOUVEAU_DSM_HAS_OPT; | 234 | retval |= NOUVEAU_DSM_HAS_OPT; |
| 213 | 235 | ||
| 214 | if (retval & NOUVEAU_DSM_HAS_OPT) { | 236 | if (retval & NOUVEAU_DSM_HAS_OPT) { |
