From patchwork Fri Oct 19 09:51:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Lezcano X-Patchwork-Id: 1617351 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 BA1383FD9C for ; Fri, 19 Oct 2012 09:51:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753899Ab2JSJvi (ORCPT ); Fri, 19 Oct 2012 05:51:38 -0400 Received: from mail-wg0-f42.google.com ([74.125.82.42]:43683 "EHLO mail-wg0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753054Ab2JSJvh (ORCPT ); Fri, 19 Oct 2012 05:51:37 -0400 Received: by mail-wg0-f42.google.com with SMTP id fm10so33109wgb.1 for ; Fri, 19 Oct 2012 02:51:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=w8g4kHbk1lKZinuveoX6bvPNNttNIqchK6t63Uq1KIk=; b=mihc/5GuPRhAttvMBus9YcAVqVr6xO5KlatSDVwqLyrX9qQcj8MXGsUTMNgdrc3QJ5 JOIy+ISkoXE+Up0/4QxGRcdMkY+WclI21K2I11QoQrEum6mMHsKSdkVSSDvkqdVlwLd6 nWvToKRPA69vfE8pqmejMlytAGLv/PVDsa/a8ydQWzTj/L1dXG1sldhcasI6usekksp0 P39mK0pQEQGAmD88IgNjT2djcl2aBXe7LELXRFN9tgbOX4bMHUKuPDROqrxToy9QjH6j AUmgX16WfOJIPBFdaQgmUNwqdEVp9IQEpX/1t7hSd5w+rAiimE+SaGq760A1dpRTIOR9 0Odw== Received: by 10.216.74.85 with SMTP id w63mr473717wed.212.1350640296243; Fri, 19 Oct 2012 02:51:36 -0700 (PDT) Received: from localhost.localdomain (AToulouse-654-1-1-158.w90-5.abo.wanadoo.fr. [90.5.56.158]) by mx.google.com with ESMTPS id dt9sm33952821wib.1.2012.10.19.02.51.34 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 19 Oct 2012 02:51:35 -0700 (PDT) From: Daniel Lezcano To: lenb@kernel.org, rjw@sisk.pl Cc: linux-acpi@vger.kernel.org, linaro-dev@lists.linaro.org, patches@linaro.org Subject: [PATCH 2/5] cpuidle / ACPI : remove pointless headers Date: Fri, 19 Oct 2012 11:51:29 +0200 Message-Id: <1350640292-22468-2-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1350640292-22468-1-git-send-email-daniel.lezcano@linaro.org> References: <1350640292-22468-1-git-send-email-daniel.lezcano@linaro.org> X-Gm-Message-State: ALoCoQnBchC9Da1AHhXEhliufAGRDB5O1Lvb7EHTFYW5swz5N7BIMheiBHvIlJskKViSqxaXvwUp Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org These different headers are not needed. Signed-off-by: Daniel Lezcano --- drivers/acpi/processor_idle.c | 13 ------------- 1 files changed, 0 insertions(+), 13 deletions(-) diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index 1f536a3..9aac69b 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c @@ -28,19 +28,10 @@ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -#include #include -#include -#include -#include -#include #include -#include -#include /* need_resched() */ -#include #include #include -#include /* * Include the apic definitions for x86 to have the APIC timer related defines @@ -52,12 +43,8 @@ #include #endif -#include -#include - #include #include -#include #define PREFIX "ACPI: " ACPI_MODULE_NAME("processor_idle");