Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755540AbZFTKgL (ORCPT ); Sat, 20 Jun 2009 06:36:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751690AbZFTKf6 (ORCPT ); Sat, 20 Jun 2009 06:35:58 -0400 Received: from hera.kernel.org ([140.211.167.34]:46018 "EHLO hera.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751384AbZFTKf6 (ORCPT ); Sat, 20 Jun 2009 06:35:58 -0400 Subject: [PATCH -tip] x86: mm/init.c declare check_efer() before it get used From: Jaswinder Singh Rajput To: Andrew Morton , Ingo Molnar , x86 maintainers , LKML Content-Type: text/plain Date: Sat, 20 Jun 2009 16:05:32 +0530 Message-Id: <1245494132.8613.11.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 (2.24.5-1.fc10) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 947 Lines: 35 check_efer() is already declared in asm/proto.h, so include it before using it. Also fix sparse warning : CHECK arch/x86/mm/init.c arch/x86/mm/init.c:83:16: warning: symbol 'check_efer' was not declared. Should it be static? Signed-off-by: Jaswinder Singh Rajput --- arch/x86/mm/init.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/x86/mm/init.c b/arch/x86/mm/init.c index 1043590..d31f9e7 100644 --- a/arch/x86/mm/init.c +++ b/arch/x86/mm/init.c @@ -12,6 +12,7 @@ #include #include #include +#include DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); -- 1.6.0.6 -- 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/