Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933317Ab2EKWJz (ORCPT ); Fri, 11 May 2012 18:09:55 -0400 Received: from mail-pz0-f46.google.com ([209.85.210.46]:43195 "EHLO mail-pz0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1030312Ab2EKWJm (ORCPT ); Fri, 11 May 2012 18:09:42 -0400 From: mathieu.poirier@linaro.org To: JBottomley@parallels.com Cc: megaraidlinux@lsi.com, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, arnd@arndb.de, mathieu.poirier@linaro.org Subject: [PATCH 7/7] drivers/scsi: some ISA drivers need ISA_DMA_API Date: Fri, 11 May 2012 16:09:28 -0600 Message-Id: <1336774168-26577-8-git-send-email-mathieu.poirier@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1336774168-26577-1-git-send-email-mathieu.poirier@linaro.org> References: <1336774168-26577-1-git-send-email-mathieu.poirier@linaro.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1737 Lines: 51 From: Arnd Bergmann The two options are separate, and some platforms (e.g. arm pxa) have ISA slots but no ISA dma controller, so they cannot build drivers using the enable_dma etc functions. Signed-off-by: Arnd Bergmann Signed-off-by: Mathieu Poirier --- drivers/scsi/Kconfig | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig index 2f49a00..495feca 100644 --- a/drivers/scsi/Kconfig +++ b/drivers/scsi/Kconfig @@ -1124,7 +1124,7 @@ config SCSI_IZIP_SLOW_CTR config SCSI_NCR53C406A tristate "NCR53c406a SCSI support" - depends on ISA && SCSI + depends on ISA && SCSI && ISA_DMA_API help This is support for the NCR53c406a SCSI host adapter. For user configurable parameters, check out @@ -1392,7 +1392,7 @@ config SCSI_NCR53C8XX_NO_DISCONNECT config SCSI_PAS16 tristate "PAS16 SCSI support" - depends on ISA && SCSI + depends on ISA && ISA_DMA_API && SCSI select SCSI_SPI_ATTRS ---help--- This is support for a SCSI host adapter. It is explained in section @@ -1406,7 +1406,7 @@ config SCSI_PAS16 config SCSI_QLOGIC_FAS tristate "Qlogic FAS SCSI support" - depends on ISA && SCSI + depends on ISA && SCSI && ISA_DMA_API ---help--- This is a driver for the ISA, VLB, and PCMCIA versions of the Qlogic FastSCSI! cards as well as any other card based on the FASXX chip -- 1.7.5.4 -- 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/