Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759892AbZDDIqN (ORCPT ); Sat, 4 Apr 2009 04:46:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755651AbZDDIp4 (ORCPT ); Sat, 4 Apr 2009 04:45:56 -0400 Received: from mail-qy0-f118.google.com ([209.85.221.118]:49532 "EHLO mail-qy0-f118.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751798AbZDDIpz (ORCPT ); Sat, 4 Apr 2009 04:45:55 -0400 Message-ID: <49D71E3C.5080701@larces.uece.br> Date: Sat, 04 Apr 2009 05:45:48 -0300 From: Sergio Luis User-Agent: Thunderbird 2.0.0.18 (X11/20081105) MIME-Version: 1.0 To: "Linux-kernel Mailing List" , "Rafael J. Wysocki" , "Pavel Machek" , "x86 Maintainers" , "Ingo Molnar" Subject: [PATCH 1/6] x86: unify power/cpu_(32|64) headers Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1718 Lines: 60 x86: unify power/cpu_(32|64) headers First step towards the unification of cpu_32.c and cpu_64.c. This commit unifies the headers of such files, making both of them use the same header files. It also remove the uneeded . Signed-off-by: Sergio Luis Signed-off-by: Lauro Salmito --- arch/x86/power/cpu_32.c | 6 +++++- arch/x86/power/cpu_64.c | 8 +++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/arch/x86/power/cpu_32.c b/arch/x86/power/cpu_32.c index 274d060..e9ceaa0 100644 --- a/arch/x86/power/cpu_32.c +++ b/arch/x86/power/cpu_32.c @@ -7,9 +7,13 @@ * Copyright (c) 2001 Patrick Mochel */ -#include #include +#include + +#include +#include #include +#include #include #include diff --git a/arch/x86/power/cpu_64.c b/arch/x86/power/cpu_64.c index e3b6cf7..d1cf7ae 100644 --- a/arch/x86/power/cpu_64.c +++ b/arch/x86/power/cpu_64.c @@ -8,12 +8,14 @@ * Copyright (c) 2001 Patrick Mochel */ -#include #include -#include -#include +#include + #include +#include #include +#include +#include #include static void fix_processor_context(void); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/