Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965133AbWIEPdL (ORCPT ); Tue, 5 Sep 2006 11:33:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S965132AbWIEPdL (ORCPT ); Tue, 5 Sep 2006 11:33:11 -0400 Received: from mx1.redhat.com ([66.187.233.31]:26601 "EHLO mx1.redhat.com") by vger.kernel.org with ESMTP id S965120AbWIEPdH (ORCPT ); Tue, 5 Sep 2006 11:33:07 -0400 From: David Howells In-Reply-To: <20060905132530.GD9173@stusta.de> References: <20060905132530.GD9173@stusta.de> <20060901015818.42767813.akpm@osdl.org> To: Adrian Bunk Cc: Andrew Morton , Arjan van de Ven , linux-kernel@vger.kernel.org, Ingo Molnar , Jeff Garzik , netdev@vger.kernel.org, David Howells Subject: [PATCH] NOMMU: Make lib/ioremap.c conditional X-Mailer: MH-E 8.0; nmh 1.1; GNU Emacs 22.0.50 Date: Tue, 05 Sep 2006 16:31:22 +0100 Message-ID: <6130.1157470282@warthog.cambridge.redhat.com> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1126 Lines: 29 Make lib/ioremap.c conditional on !CONFIG_MMU. It plays with PTEs which don't exist under NOMMU conditions. Signed-Off-By: David Howells --- warthog>diffstat -p1 nommu-ioremap-2618rc5mm1.diff lib/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -urp ../kernels/linux-2.6.18-rc5-mm1/lib/Makefile linux-2.6.18-rc5-mm1-frv/lib/Makefile --- ../kernels/linux-2.6.18-rc5-mm1/lib/Makefile 2006-09-04 18:03:32.000000000 +0100 +++ linux-2.6.18-rc5-mm1-frv/lib/Makefile 2006-09-05 16:01:38.000000000 +0100 @@ -5,8 +5,9 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ bust_spinlocks.o rbtree.o radix-tree.o dump_stack.o \ idr.o div64.o int_sqrt.o bitmap.o extable.o prio_tree.o \ - sha1.o ioremap.o + sha1.o +lib-$(CONFIG_MMU) += ioremap.o lib-$(CONFIG_SMP) += cpumask.o lib-y += kobject.o kref.o kobject_uevent.o klist.o - 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/