From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751544AbXCZKLo (ORCPT ); Mon, 26 Mar 2007 06:11:44 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751292AbXCZKLn (ORCPT ); Mon, 26 Mar 2007 06:11:43 -0400 Received: from nwd2mail10.analog.com ([137.71.25.55]:31533 "EHLO nwd2mail10.analog.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751544AbXCZKLm (ORCPT ); Mon, 26 Mar 2007 06:11:42 -0400 X-IronPort-AV: i="4.14,329,1170651600"; d="scan'208"; a="32577270:sNHT21007392" Subject: [PATCH -mm] Blackfin arch: fix compiling error in flat c file From: "Wu, Bryan" Reply-To: bryan.wu@analog.com To: Andrew Morton , Arnd Bergmann , Paul Mundt , linux-kernel@vger.kernel.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: Analog Devices, Inc. Date: Mon, 26 Mar 2007 18:12:10 +0800 Message-Id: <1174903930.32691.68.camel@roc-desktop> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Hi folks, THis patch fixed including wrong header file when compiling in 2.6.21-rc4-mm. Signed-off-by: Bryan Wu --- arch/blackfin/kernel/flat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/arch/blackfin/kernel/flat.c =================================================================== --- linux-2.6.orig/arch/blackfin/kernel/flat.c +++ linux-2.6/arch/blackfin/kernel/flat.c @@ -18,8 +18,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include +#include #include #define FLAT_BFIN_RELOC_TYPE_16_BIT 0 _ Thanks, -Bryan