diff options
author | Gwendal Grignou <gwendal@google.com> | 2010-05-25 15:31:38 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2010-10-21 20:21:03 -0400 |
commit | d9027470b88631d0956ac37cdadfdeb9cdcf2c99 (patch) | |
tree | b15273e88431ba734a24965dfc81132ac13bc8bd /drivers/ata/Makefile | |
parent | f6f94e2ab1b33f0082ac22d71f66385a60d8157f (diff) |
[libata] Add ATA transport class
This is a scheleton for libata transport class.
All information is read only, exporting information from libata:
- ata_port class: one per ATA port
- ata_link class: one per ATA port or 15 for SATA Port Multiplier
- ata_device class: up to 2 for PATA link, usually one for SATA.
Signed-off-by: Gwendal Grignou <gwendal@google.com>
Reviewed-by: Grant Grundler <grundler@google.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/Makefile')
-rw-r--r-- | drivers/ata/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/Makefile b/drivers/ata/Makefile index d5df04a395ca..ccd461bb5ee4 100644 --- a/drivers/ata/Makefile +++ b/drivers/ata/Makefile | |||
@@ -99,7 +99,7 @@ obj-$(CONFIG_ATA_GENERIC) += ata_generic.o | |||
99 | # Should be last libata driver | 99 | # Should be last libata driver |
100 | obj-$(CONFIG_PATA_LEGACY) += pata_legacy.o | 100 | obj-$(CONFIG_PATA_LEGACY) += pata_legacy.o |
101 | 101 | ||
102 | libata-objs := libata-core.o libata-scsi.o libata-eh.o | 102 | libata-objs := libata-core.o libata-scsi.o libata-eh.o libata-transport.o |
103 | libata-$(CONFIG_ATA_SFF) += libata-sff.o | 103 | libata-$(CONFIG_ATA_SFF) += libata-sff.o |
104 | libata-$(CONFIG_SATA_PMP) += libata-pmp.o | 104 | libata-$(CONFIG_SATA_PMP) += libata-pmp.o |
105 | libata-$(CONFIG_ATA_ACPI) += libata-acpi.o | 105 | libata-$(CONFIG_ATA_ACPI) += libata-acpi.o |