From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756714AbXIXBgV (ORCPT ); Sun, 23 Sep 2007 21:36:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754115AbXIXBgO (ORCPT ); Sun, 23 Sep 2007 21:36:14 -0400 Received: from agminet01.oracle.com ([141.146.126.228]:17541 "EHLO agminet01.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754090AbXIXBgN (ORCPT ); Sun, 23 Sep 2007 21:36:13 -0400 Date: Sun, 23 Sep 2007 18:34:38 -0700 From: Randy Dunlap To: hce Cc: linux-kernel@vger.kernel.org Subject: Re: Ethernet driver on 2.6.22 Message-Id: <20070923183438.8807b5da.randy.dunlap@oracle.com> In-Reply-To: <95455e980709231552l73bd8c78u46d3a45266749902@mail.gmail.com> References: <95455e980709231552l73bd8c78u46d3a45266749902@mail.gmail.com> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.4.6 (GTK+ 2.8.10; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Brightmail-Tracker: AAAAAQAAAAI= X-Brightmail-Tracker: AAAAAQAAAAI= X-Whitelist: TRUE X-Whitelist: TRUE Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 24 Sep 2007 08:52:36 +1000 hce wrote: > Hi, > > I am upgrading from kernel 2.6.11 to 2.6.22 on ARM S3C2400A and found > a following issue on 2.6.22. > > On 2.6.11, I selected CONFIG_ISA, CONFIG_NET_PCI and CONFIG_CS89X0 to > build CS8900A Ethernet driver to kernel, it was running perfect. > > But on 2.6.22, I made the same configuration for CS8900A, the cs89x0.o > could not be compiled in to the kernel (or as a module when I tried to > CONFIG_CS89X0=m) unless I commented out depends statement in > drivers/net/Kconfig. I double checked all three are CONFIG_ISA=y, > CONFIG_NET_PCI=y and CONFIG_CS89X0=y. Any explanation please, was I > missing something here? I didn't look in 2.6.11 Kconfig files, but in 2.6.22, this driver is limited to 3 specific boards: config CS89x0 tristate "CS89x0 support" depends on NET_PCI && (ISA || MACH_IXDP2351 || ARCH_IXDP2X01 || ARCH_PNX010X) Does ARM S3C2400A qualify as any of those? (MACH_... or ARCH_...) (latter: ARCH_PNX010X is not used anywhere else AFAICT) --- ~Randy Phaedrus says that Quality is about caring.