Commit 2314b692 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

Merge branch 'acpi-fixes'

* acpi-fixes:
  ACPI / PM: Do not execute _PS0 for devices without _PSC during initialization
  ACPI / scan: do not match drivers against objects having scan handlers
  ACPI / APEI: fix error return code in ghes_probe()
  ACPI / video: ignore BIOS initial backlight value for HP Pavilion g6
  ACPI / video: ignore BIOS initial backlight value for HP m4
  x86 / platform / hp_wmi: Fix bluetooth_rfkill misuse in hp_wmi_rfkill_setup()
parents d683b96b 7cd8407d
...@@ -919,13 +919,14 @@ static int ghes_probe(struct platform_device *ghes_dev) ...@@ -919,13 +919,14 @@ static int ghes_probe(struct platform_device *ghes_dev)
break; break;
case ACPI_HEST_NOTIFY_EXTERNAL: case ACPI_HEST_NOTIFY_EXTERNAL:
/* External interrupt vector is GSI */ /* External interrupt vector is GSI */
if (acpi_gsi_to_irq(generic->notify.vector, &ghes->irq)) { rc = acpi_gsi_to_irq(generic->notify.vector, &ghes->irq);
if (rc) {
pr_err(GHES_PFX "Failed to map GSI to IRQ for generic hardware error source: %d\n", pr_err(GHES_PFX "Failed to map GSI to IRQ for generic hardware error source: %d\n",
generic->header.source_id); generic->header.source_id);
goto err_edac_unreg; goto err_edac_unreg;
} }
if (request_irq(ghes->irq, ghes_irq_func, rc = request_irq(ghes->irq, ghes_irq_func, 0, "GHES IRQ", ghes);
0, "GHES IRQ", ghes)) { if (rc) {
pr_err(GHES_PFX "Failed to register IRQ for generic hardware error source: %d\n", pr_err(GHES_PFX "Failed to register IRQ for generic hardware error source: %d\n",
generic->header.source_id); generic->header.source_id);
goto err_edac_unreg; goto err_edac_unreg;
......
...@@ -278,11 +278,13 @@ int acpi_bus_init_power(struct acpi_device *device) ...@@ -278,11 +278,13 @@ int acpi_bus_init_power(struct acpi_device *device)
if (result) if (result)
return result; return result;
} else if (state == ACPI_STATE_UNKNOWN) { } else if (state == ACPI_STATE_UNKNOWN) {
/* No power resources and missing _PSC? Try to force D0. */ /*
* No power resources and missing _PSC? Cross fingers and make
* it D0 in hope that this is what the BIOS put the device into.
* [We tried to force D0 here by executing _PS0, but that broke
* Toshiba P870-303 in a nasty way.]
*/
state = ACPI_STATE_D0; state = ACPI_STATE_D0;
result = acpi_dev_pm_explicit_set(device, state);
if (result)
return result;
} }
device->power.state = state; device->power.state = state;
return 0; return 0;
......
...@@ -740,6 +740,10 @@ static int acpi_bus_match(struct device *dev, struct device_driver *drv) ...@@ -740,6 +740,10 @@ static int acpi_bus_match(struct device *dev, struct device_driver *drv)
struct acpi_device *acpi_dev = to_acpi_device(dev); struct acpi_device *acpi_dev = to_acpi_device(dev);
struct acpi_driver *acpi_drv = to_acpi_driver(drv); struct acpi_driver *acpi_drv = to_acpi_driver(drv);
/* Skip ACPI device objects with scan handlers attached. */
if (acpi_dev->handler)
return 0;
return acpi_dev->flags.match_driver return acpi_dev->flags.match_driver
&& !acpi_match_device_ids(acpi_dev, acpi_drv->ids); && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
} }
......
...@@ -456,6 +456,14 @@ static struct dmi_system_id video_dmi_table[] __initdata = { ...@@ -456,6 +456,14 @@ static struct dmi_system_id video_dmi_table[] __initdata = {
DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dm4 Notebook PC"), DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dm4 Notebook PC"),
}, },
}, },
{
.callback = video_ignore_initial_backlight,
.ident = "HP Pavilion g6 Notebook PC",
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion g6 Notebook PC"),
},
},
{ {
.callback = video_ignore_initial_backlight, .callback = video_ignore_initial_backlight,
.ident = "HP 1000 Notebook PC", .ident = "HP 1000 Notebook PC",
...@@ -464,6 +472,14 @@ static struct dmi_system_id video_dmi_table[] __initdata = { ...@@ -464,6 +472,14 @@ static struct dmi_system_id video_dmi_table[] __initdata = {
DMI_MATCH(DMI_PRODUCT_NAME, "HP 1000 Notebook PC"), DMI_MATCH(DMI_PRODUCT_NAME, "HP 1000 Notebook PC"),
}, },
}, },
{
.callback = video_ignore_initial_backlight,
.ident = "HP Pavilion m4",
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion m4 Notebook PC"),
},
},
{} {}
}; };
......
...@@ -703,7 +703,7 @@ static int hp_wmi_rfkill_setup(struct platform_device *device) ...@@ -703,7 +703,7 @@ static int hp_wmi_rfkill_setup(struct platform_device *device)
} }
rfkill_init_sw_state(gps_rfkill, rfkill_init_sw_state(gps_rfkill,
hp_wmi_get_sw_state(HPWMI_GPS)); hp_wmi_get_sw_state(HPWMI_GPS));
rfkill_set_hw_state(bluetooth_rfkill, rfkill_set_hw_state(gps_rfkill,
hp_wmi_get_hw_state(HPWMI_GPS)); hp_wmi_get_hw_state(HPWMI_GPS));
err = rfkill_register(gps_rfkill); err = rfkill_register(gps_rfkill);
if (err) if (err)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment