diff mbox

acpi: missing break

Message ID 20121025143229.17059.47783.stgit@localhost.localdomain (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Alan Cox Oct. 25, 2012, 2:32 p.m. UTC
From: Alan Cox <alan@linux.intel.com>

We handle NOTIFY_THROTTLING so don't then fll through to unsupported event

Signed-off-by: Alan Cox <alan@linux.intel.com>
---

 drivers/acpi/processor_driver.c |    1 +
 1 file changed, 1 insertion(+)


--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c
index ae50bfc..a4352b8 100644
--- a/drivers/acpi/processor_driver.c
+++ b/drivers/acpi/processor_driver.c
@@ -409,6 +409,7 @@  static void acpi_processor_notify(struct acpi_device *device, u32 event)
 		acpi_bus_generate_proc_event(device, event, 0);
 		acpi_bus_generate_netlink_event(device->pnp.device_class,
 						  dev_name(&device->dev), event, 0);
+		break;
 	default:
 		ACPI_DEBUG_PRINT((ACPI_DB_INFO,
 				  "Unsupported event [0x%x]\n", event));