From patchwork Thu Oct 25 14:32:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alan Cox X-Patchwork-Id: 1644591 Return-Path: X-Original-To: patchwork-linux-acpi@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 2D0D13FC36 for ; Thu, 25 Oct 2012 14:31:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759769Ab2JYObI (ORCPT ); Thu, 25 Oct 2012 10:31:08 -0400 Received: from lxorguk.ukuu.org.uk ([81.2.110.251]:53792 "EHLO lxorguk.ukuu.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759744Ab2JYObG (ORCPT ); Thu, 25 Oct 2012 10:31:06 -0400 Received: from localhost.localdomain (earthlight.etchedpixels.co.uk [81.2.110.250]) by lxorguk.ukuu.org.uk (8.14.5/8.14.1) with ESMTP id q9PF2xFg006796; Thu, 25 Oct 2012 16:03:05 +0100 From: Alan Cox Subject: [PATCH] acpi: missing break To: lenb@linux.intel.com, linux-acpi@vger.kernel.org Date: Thu, 25 Oct 2012 15:32:37 +0100 Message-ID: <20121025143229.17059.47783.stgit@localhost.localdomain> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org From: Alan Cox We handle NOTIFY_THROTTLING so don't then fll through to unsupported event Signed-off-by: Alan Cox --- 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 --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));