All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] acpi: missing break
@ 2012-10-25 14:32 Alan Cox
  0 siblings, 0 replies; only message in thread
From: Alan Cox @ 2012-10-25 14:32 UTC (permalink / raw)
  To: lenb, linux-acpi

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(+)

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));


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-10-25 14:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-25 14:32 [PATCH] acpi: missing break Alan Cox

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.