From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759363AbYBPQ0n (ORCPT ); Sat, 16 Feb 2008 11:26:43 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757764AbYBPQZF (ORCPT ); Sat, 16 Feb 2008 11:25:05 -0500 Received: from fk-out-0910.google.com ([209.85.128.189]:28570 "EHLO fk-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758791AbYBPQZA (ORCPT ); Sat, 16 Feb 2008 11:25:00 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:in-reply-to:references:subject; b=dpMrG6VqUCZqDxKiDmRIztWpm0zFeQgJsFsi9Gy54TvjNLYqa3u3w3W2noNda9sYJpRyXZD4utm84BP3xz/TK3XCaZPxEqEyRXFzT0/0nO1I7R/vwt99FYQLIYolM+Ra+pguhbyiMFPX9K4u1QZuK1TPXOKAINBCSykWpdGwDrA= From: Bartlomiej Zolnierkiewicz To: linux-ide@vger.kernel.org Cc: Bartlomiej Zolnierkiewicz , linux-kernel@vger.kernel.org Date: Sat, 16 Feb 2008 17:39:32 +0100 Message-Id: <20080216163932.10174.87755.sendpatchset@localhost.localdomain> In-Reply-To: <20080216163856.10174.72546.sendpatchset@localhost.localdomain> References: <20080216163856.10174.72546.sendpatchset@localhost.localdomain> Subject: [PATCH 06/12] ide: limit legacy VLB host drivers to alpha, x86 and mips Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org These host drivers indirectly depend on CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS=y which is defined only on alpha, x86, ia64, m32r, mips and ppc32. Moreover: - on ia64 there is no ISA - m32r is too new for VLB - on ppc32 ISA is available only on PPC_CHRP (no default IDE ports) and PPC_PREP (marked as BROKEN) [ the common sense tells me that VLB was only used on x86 but there are urban legends that one of these host drivers was needed on some other arch - thus the extra care ] Signed-off-by: Bartlomiej Zolnierkiewicz --- drivers/ide/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/drivers/ide/Kconfig =================================================================== --- a/drivers/ide/Kconfig +++ b/drivers/ide/Kconfig @@ -1031,7 +1031,7 @@ config IDE_EXT_DIRECT endchoice # no isa -> no vlb -if ISA +if ISA && (ALPHA || X86 || MIPS) comment "Other IDE chipsets support" comment "Note: most of these also require special kernel boot parameters"