Skip to content

Commit

Permalink
libata: Remove SCSI_ prefix from Kconfig symbols
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Jeff Garzik committed Aug 14, 2006
1 parent b352e57 commit 8ad92ba
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
34 changes: 17 additions & 17 deletions drivers/ata/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ config ATA
that "speaks" the ATA protocol, also called ATA controller),
because you will be asked for it.

config SCSI_SATA_AHCI
config SATA_AHCI
tristate "AHCI SATA support"
depends on ATA && PCI
help
This option enables support for AHCI Serial ATA.

If unsure, say N.

config SCSI_SATA_SVW
config SATA_SVW
tristate "ServerWorks Frodo / Apple K2 SATA support"
depends on ATA && PCI
help
Expand All @@ -26,7 +26,7 @@ config SCSI_SATA_SVW

If unsure, say N.

config SCSI_ATA_PIIX
config ATA_PIIX
tristate "Intel PIIX/ICH SATA support"
depends on ATA && PCI
help
Expand All @@ -36,7 +36,7 @@ config SCSI_ATA_PIIX

If unsure, say N.

config SCSI_SATA_MV
config SATA_MV
tristate "Marvell SATA support (HIGHLY EXPERIMENTAL)"
depends on ATA && PCI && EXPERIMENTAL
help
Expand All @@ -45,96 +45,96 @@ config SCSI_SATA_MV

If unsure, say N.

config SCSI_SATA_NV
config SATA_NV
tristate "NVIDIA SATA support"
depends on ATA && PCI
help
This option enables support for NVIDIA Serial ATA.

If unsure, say N.

config SCSI_PDC_ADMA
config PDC_ADMA
tristate "Pacific Digital ADMA support"
depends on ATA && PCI
help
This option enables support for Pacific Digital ADMA controllers

If unsure, say N.

config SCSI_SATA_QSTOR
config SATA_QSTOR
tristate "Pacific Digital SATA QStor support"
depends on ATA && PCI
help
This option enables support for Pacific Digital Serial ATA QStor.

If unsure, say N.

config SCSI_SATA_PROMISE
config SATA_PROMISE
tristate "Promise SATA TX2/TX4 support"
depends on ATA && PCI
help
This option enables support for Promise Serial ATA TX2/TX4.

If unsure, say N.

config SCSI_SATA_SX4
config SATA_SX4
tristate "Promise SATA SX4 support"
depends on ATA && PCI && EXPERIMENTAL
help
This option enables support for Promise Serial ATA SX4.

If unsure, say N.

config SCSI_SATA_SIL
config SATA_SIL
tristate "Silicon Image SATA support"
depends on ATA && PCI
help
This option enables support for Silicon Image Serial ATA.

If unsure, say N.

config SCSI_SATA_SIL24
config SATA_SIL24
tristate "Silicon Image 3124/3132 SATA support"
depends on ATA && PCI
help
This option enables support for Silicon Image 3124/3132 Serial ATA.

If unsure, say N.

config SCSI_SATA_SIS
config SATA_SIS
tristate "SiS 964/180 SATA support"
depends on ATA && PCI
help
This option enables support for SiS Serial ATA 964/180.

If unsure, say N.

config SCSI_SATA_ULI
config SATA_ULI
tristate "ULi Electronics SATA support"
depends on ATA && PCI
help
This option enables support for ULi Electronics SATA.

If unsure, say N.

config SCSI_SATA_VIA
config SATA_VIA
tristate "VIA SATA support"
depends on ATA && PCI
help
This option enables support for VIA Serial ATA.

If unsure, say N.

config SCSI_SATA_VITESSE
config SATA_VITESSE
tristate "VITESSE VSC-7174 / INTEL 31244 SATA support"
depends on ATA && PCI
help
This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA.

If unsure, say N.

config SCSI_SATA_INTEL_COMBINED
config SATA_INTEL_COMBINED
bool
depends on IDE=y && !BLK_DEV_IDE_SATA && (SCSI_SATA_AHCI || SCSI_ATA_PIIX)
depends on IDE=y && !BLK_DEV_IDE_SATA && (SATA_AHCI || ATA_PIIX)
default y

30 changes: 15 additions & 15 deletions drivers/ata/Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@

obj-$(CONFIG_SCSI_SATA_AHCI) += libata.o ahci.o
obj-$(CONFIG_SCSI_SATA_SVW) += libata.o sata_svw.o
obj-$(CONFIG_SCSI_ATA_PIIX) += libata.o ata_piix.o
obj-$(CONFIG_SCSI_SATA_PROMISE) += libata.o sata_promise.o
obj-$(CONFIG_SCSI_SATA_QSTOR) += libata.o sata_qstor.o
obj-$(CONFIG_SCSI_SATA_SIL) += libata.o sata_sil.o
obj-$(CONFIG_SCSI_SATA_SIL24) += libata.o sata_sil24.o
obj-$(CONFIG_SCSI_SATA_VIA) += libata.o sata_via.o
obj-$(CONFIG_SCSI_SATA_VITESSE) += libata.o sata_vsc.o
obj-$(CONFIG_SCSI_SATA_SIS) += libata.o sata_sis.o
obj-$(CONFIG_SCSI_SATA_SX4) += libata.o sata_sx4.o
obj-$(CONFIG_SCSI_SATA_NV) += libata.o sata_nv.o
obj-$(CONFIG_SCSI_SATA_ULI) += libata.o sata_uli.o
obj-$(CONFIG_SCSI_SATA_MV) += libata.o sata_mv.o
obj-$(CONFIG_SCSI_PDC_ADMA) += libata.o pdc_adma.o
obj-$(CONFIG_SATA_AHCI) += libata.o ahci.o
obj-$(CONFIG_SATA_SVW) += libata.o sata_svw.o
obj-$(CONFIG_ATA_PIIX) += libata.o ata_piix.o
obj-$(CONFIG_SATA_PROMISE) += libata.o sata_promise.o
obj-$(CONFIG_SATA_QSTOR) += libata.o sata_qstor.o
obj-$(CONFIG_SATA_SIL) += libata.o sata_sil.o
obj-$(CONFIG_SATA_SIL24) += libata.o sata_sil24.o
obj-$(CONFIG_SATA_VIA) += libata.o sata_via.o
obj-$(CONFIG_SATA_VITESSE) += libata.o sata_vsc.o
obj-$(CONFIG_SATA_SIS) += libata.o sata_sis.o
obj-$(CONFIG_SATA_SX4) += libata.o sata_sx4.o
obj-$(CONFIG_SATA_NV) += libata.o sata_nv.o
obj-$(CONFIG_SATA_ULI) += libata.o sata_uli.o
obj-$(CONFIG_SATA_MV) += libata.o sata_mv.o
obj-$(CONFIG_PDC_ADMA) += libata.o pdc_adma.o

libata-objs := libata-core.o libata-scsi.o libata-bmdma.o libata-eh.o

0 comments on commit 8ad92ba

Please sign in to comment.