Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161200AbVIPRdi (ORCPT ); Fri, 16 Sep 2005 13:33:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1030592AbVIPRdi (ORCPT ); Fri, 16 Sep 2005 13:33:38 -0400 Received: from atlrel7.hp.com ([156.153.255.213]:2744 "EHLO atlrel7.hp.com") by vger.kernel.org with ESMTP id S1030587AbVIPRdh (ORCPT ); Fri, 16 Sep 2005 13:33:37 -0400 From: Bjorn Helgaas To: Andrew Morton Subject: [PATCH] IDE: move CONFIG_IDE_MAX_HWIFS into linux/ide.h Date: Fri, 16 Sep 2005 11:33:10 -0600 User-Agent: KMail/1.8.1 Cc: Bartlomiej Zolnierkiewicz , Alan Cox , linux-kernel@vger.kernel.org, linux-ide@vger.kernel.org, rth@twiddle.net, ink@jurassic.park.msu.ru, lethal@linux-sh.org, kkojima@rr.iij4u.or.jp, linux-sh@m17n.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200509161133.10493.bjorn.helgaas@hp.com> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2507 Lines: 75 CONFIG_IDE_MAX_HWIFS is a generic thing, no need to have it duplicated by every arch that uses it. Previous posts elicited no responses: http://www.uwsg.iu.edu/hypermail/linux/kernel/0508.3/0111.html http://www.uwsg.iu.edu/hypermail/linux/kernel/0508.3/1299.html Signed-off-by: Bjorn Helgaas Index: work-ide/include/asm-alpha/ide.h =================================================================== --- work-ide.orig/include/asm-alpha/ide.h 2005-08-24 09:36:41.000000000 -0600 +++ work-ide/include/asm-alpha/ide.h 2005-08-24 09:37:12.000000000 -0600 @@ -15,10 +15,6 @@ #include -#ifndef MAX_HWIFS -#define MAX_HWIFS CONFIG_IDE_MAX_HWIFS -#endif - #define IDE_ARCH_OBSOLETE_DEFAULTS static inline int ide_default_irq(unsigned long base) Index: work-ide/include/asm-sh/ide.h =================================================================== --- work-ide.orig/include/asm-sh/ide.h 2005-08-24 09:36:41.000000000 -0600 +++ work-ide/include/asm-sh/ide.h 2005-08-24 09:37:12.000000000 -0600 @@ -16,10 +16,6 @@ #include -#ifndef MAX_HWIFS -#define MAX_HWIFS CONFIG_IDE_MAX_HWIFS -#endif - #define ide_default_io_ctl(base) (0) #include Index: work-ide/include/asm-sh64/ide.h =================================================================== --- work-ide.orig/include/asm-sh64/ide.h 2005-08-24 09:36:41.000000000 -0600 +++ work-ide/include/asm-sh64/ide.h 2005-08-24 09:37:12.000000000 -0600 @@ -17,10 +17,6 @@ #include -#ifndef MAX_HWIFS -#define MAX_HWIFS CONFIG_IDE_MAX_HWIFS -#endif - /* Without this, the initialisation of PCI IDE cards end up calling * ide_init_hwif_ports, which won't work. */ #ifdef CONFIG_BLK_DEV_IDEPCI Index: work-ide/include/linux/ide.h =================================================================== --- work-ide.orig/include/linux/ide.h 2005-08-24 09:37:03.000000000 -0600 +++ work-ide/include/linux/ide.h 2005-08-24 09:37:24.000000000 -0600 @@ -266,6 +266,10 @@ #include +#ifndef MAX_HWIFS +#define MAX_HWIFS CONFIG_IDE_MAX_HWIFS +#endif + /* needed on alpha, x86/x86_64, ia64, mips, ppc32 and sh */ #ifndef IDE_ARCH_OBSOLETE_DEFAULTS # define ide_default_io_base(index) (0) - 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/