From patchwork Sat Jun 25 18:00:50 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ralf Baechle X-Patchwork-Id: 102038 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id C08A8B6F82 for ; Sun, 26 Jun 2011 04:02:37 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751942Ab1FYSCD (ORCPT ); Sat, 25 Jun 2011 14:02:03 -0400 Received: from h5.dl5rb.org.uk ([81.2.74.5]:53059 "EHLO duck.linux-mips.net" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751839Ab1FYSCC (ORCPT ); Sat, 25 Jun 2011 14:02:02 -0400 Received: from duck.linux-mips.net (duck.linux-mips.net [127.0.0.1]) by duck.linux-mips.net (8.14.4/8.14.3) with ESMTP id p5PI0qwF010620; Sat, 25 Jun 2011 19:00:52 +0100 Received: (from ralf@localhost) by duck.linux-mips.net (8.14.4/8.14.4/Submit) id p5PI0ojj010612; Sat, 25 Jun 2011 19:00:50 +0100 Date: Sat, 25 Jun 2011 19:00:50 +0100 From: Ralf Baechle To: "David S. Miller" , Eric Miao , Russell King , Ben Dooks , Paul Mundt , Jeff Garzik , Magnus Damm Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-sh@vger.kernel.org, netdev@vger.kernel.org, linux-mips@linux-mips.org Subject: [PATCH] NET: AX88796: Tighten up Kconfig dependencies Message-ID: <20110625180050.GA9620@linux-mips.org> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org In def47c5095d53814512bb0c62ec02dfdec769db1 the AX88796 driver got restricted to just be build for ARM and MIPS on the sole merrit that it was written for some ARM sytems and the driver had the missfortune to just build on MIPS, so MIPS was throw into the dependency for a good measure. Later 8687991a734a67f1638782c968f46fff0f94bb1f added SH but only one in-tree SH system actually has an AX88796. Tighten up dependencies by using an auxilliary config sysmbol HAS_NET_AX88796 which is selected only by the platforms that actually have or may have an AX88796. This also means the driver won't be built anymore for any MIPS platform. Signed-off-by: Ralf Baechle --- arch/arm/mach-pxa/Kconfig | 2 ++ arch/arm/mach-s3c2410/Kconfig | 1 + arch/arm/mach-s3c2440/Kconfig | 1 + arch/sh/boards/Kconfig | 1 + drivers/net/Kconfig | 5 ++++- 5 files changed, 9 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/mach-pxa/Kconfig b/arch/arm/mach-pxa/Kconfig index cd19309..37ce06f 100644 --- a/arch/arm/mach-pxa/Kconfig +++ b/arch/arm/mach-pxa/Kconfig @@ -247,11 +247,13 @@ config MACH_COLIBRI300 select PXA3xx select CPU_PXA300 select CPU_PXA310 + select HAS_NET_AX88796 config MACH_COLIBRI320 bool "Toradex Colibri PXA320" select PXA3xx select CPU_PXA320 + select HAS_NET_AX88796 config MACH_COLIBRI_EVALBOARD bool "Toradex Colibri Evaluation Carrier Board support" diff --git a/arch/arm/mach-s3c2410/Kconfig b/arch/arm/mach-s3c2410/Kconfig index 7245a55..d665f92 100644 --- a/arch/arm/mach-s3c2410/Kconfig +++ b/arch/arm/mach-s3c2410/Kconfig @@ -122,6 +122,7 @@ config ARCH_BAST select S3C_DEV_HWMON select S3C_DEV_USB_HOST select S3C_DEV_NAND + select HAS_NET_AX88796 help Say Y here if you are using the Simtec Electronics EB2410ITX development board (also known as BAST) diff --git a/arch/arm/mach-s3c2440/Kconfig b/arch/arm/mach-s3c2440/Kconfig index 50825a3..7ddbd22 100644 --- a/arch/arm/mach-s3c2440/Kconfig +++ b/arch/arm/mach-s3c2440/Kconfig @@ -86,6 +86,7 @@ config MACH_ANUBIS select S3C24XX_GPIO_EXTRA64 select S3C2440_XTAL_12000000 select S3C_DEV_USB_HOST + select HAS_NET_AX88796 help Say Y here if you are using the Simtec Electronics ANUBIS development system diff --git a/arch/sh/boards/Kconfig b/arch/sh/boards/Kconfig index d893411..f23f332 100644 --- a/arch/sh/boards/Kconfig +++ b/arch/sh/boards/Kconfig @@ -162,6 +162,7 @@ config SH_HIGHLANDER depends on CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785 select SYS_SUPPORTS_PCI select IO_TRAPPED if MMU + select HAS_NET_AX88796 config SH_SH7757LCR bool "SH7757LCR" diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index be25e92..85d18c4 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -237,13 +237,16 @@ source "drivers/net/arm/Kconfig" config AX88796 tristate "ASIX AX88796 NE2000 clone support" - depends on ARM || MIPS || SUPERH + depends on HAS_NET_AX88796 select PHYLIB select MDIO_BITBANG help AX88796 driver, using platform bus to provide chip detection and resources +config HAS_NET_AX88796 + bool + config AX88796_93CX6 bool "ASIX AX88796 external 93CX6 eeprom support" depends on AX88796