From patchwork Fri May 20 06:32:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Rothwell X-Patchwork-Id: 802272 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p4K6Wag9005670 for ; Fri, 20 May 2011 06:32:36 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933321Ab1ETGcg (ORCPT ); Fri, 20 May 2011 02:32:36 -0400 Received: from chilli.pcug.org.au ([203.10.76.44]:41934 "EHLO smtps.tip.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933024Ab1ETGcf (ORCPT ); Fri, 20 May 2011 02:32:35 -0400 Received: from canb.auug.org.au (ibmaus65.lnk.telstra.net [165.228.126.9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtps.tip.net.au (Postfix) with ESMTPSA id AC08B144B83; Fri, 20 May 2011 16:32:33 +1000 (EST) Date: Fri, 20 May 2011 16:32:33 +1000 From: Stephen Rothwell To: Linus Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Paul Mundt , linux-fbdev@vger.kernel.org Subject: linux-next: build failure after merge of the final tree Message-Id: <20110520163233.abcabd67.sfr@canb.auug.org.au> X-Mailer: Sylpheed 3.1.1 (GTK+ 2.24.4; i486-pc-linux-gnu) Mime-Version: 1.0 Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Fri, 20 May 2011 06:32:37 +0000 (UTC) Hi all, After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/video/udlfb.c: In function 'dlfb_compress_hline': drivers/video/udlfb.c:421: error: implicit declaration of function 'prefetch_range' Presumably caused by commit e66eed651fd1 ("list: remove prefetching from regular list iterators"). We need to include preempt.h explictly, now. I have included this patch for today: From: Stephen Rothwell Date: Fri, 20 May 2011 16:29:01 +1000 Subject: [PATCH] udlfb: include prefetch.h explicitly Commit e66eed651fd1 ("list: remove prefetching from regular list iterators") removed the include of prefetch.h from list.h, so we need to include it explicitly, now. fixes this build error on powerpc: drivers/video/udlfb.c: In function 'dlfb_compress_hline': drivers/video/udlfb.c:421: error: implicit declaration of function 'prefetch_range' Signed-off-by: Stephen Rothwell --- drivers/video/udlfb.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/video/udlfb.c b/drivers/video/udlfb.c index 68041d9..4c299cc 100644 --- a/drivers/video/udlfb.c +++ b/drivers/video/udlfb.c @@ -28,6 +28,7 @@ #include #include #include +#include #include