From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1946191Ab2ERXAu (ORCPT ); Fri, 18 May 2012 19:00:50 -0400 Received: from mail.windriver.com ([147.11.1.11]:40897 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759067Ab2ERXAp (ORCPT ); Fri, 18 May 2012 19:00:45 -0400 From: Paul Gortmaker To: linux-kernel@vger.kernel.org Cc: Paul Gortmaker , Thomas Gleixner , Chris Metcalf Subject: [PATCH] tile: fix compile failure on start_kernel in setup.c Date: Fri, 18 May 2012 19:00:21 -0400 Message-Id: <1337382021-16108-1-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 1.7.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit 293ef7b8288da79112276ddd53902aff75ce7494 "tile: Use generic init_task" deleted the file tile/kernel/init_task.c and moved the remaining needed code to tile/kernel/setup.c -- but this code references start_kernel and setup.c didn't include that, causing this fail: arch/tile/kernel/setup.c:69:344: error: 'start_kernel' undeclared here (not in a function) Adding the obvious include fixes it. Cc: Thomas Gleixner Cc: Chris Metcalf Signed-off-by: Paul Gortmaker diff --git a/arch/tile/kernel/setup.c b/arch/tile/kernel/setup.c index 8d91ae7..f74105b 100644 --- a/arch/tile/kernel/setup.c +++ b/arch/tile/kernel/setup.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include -- 1.7.9.1