diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-03-23 10:38:34 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-03-24 09:52:32 -0500 |
commit | ebdfca6eb1b755d3bfe9a81339ecdafd92038c1a (patch) | |
tree | 1780c1d10756c1f6c3cd34ac2f23faa729d9877d /drivers/scsi/libata-core.c | |
parent | 082776e4be791736c32baf818e50f501a7f83819 (diff) |
[PATCH] libata: add ata_dev_pair helper
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/scsi/libata-core.c')
-rw-r--r-- | drivers/scsi/libata-core.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c index d8f77f2a5af1..909568f7a72a 100644 --- a/drivers/scsi/libata-core.c +++ b/drivers/scsi/libata-core.c | |||
@@ -1576,6 +1576,23 @@ void sata_phy_reset(struct ata_port *ap) | |||
1576 | } | 1576 | } |
1577 | 1577 | ||
1578 | /** | 1578 | /** |
1579 | * ata_dev_pair - return other device on cable | ||
1580 | * @ap: port | ||
1581 | * @adev: device | ||
1582 | * | ||
1583 | * Obtain the other device on the same cable, or if none is | ||
1584 | * present NULL is returned | ||
1585 | */ | ||
1586 | |||
1587 | struct ata_device *ata_dev_pair(struct ata_port *ap, struct ata_device *adev) | ||
1588 | { | ||
1589 | struct ata_device *pair = &ap->device[1 - adev->devno]; | ||
1590 | if (!ata_dev_present(pair)) | ||
1591 | return NULL; | ||
1592 | return pair; | ||
1593 | } | ||
1594 | |||
1595 | /** | ||
1579 | * ata_port_disable - Disable port. | 1596 | * ata_port_disable - Disable port. |
1580 | * @ap: Port to be disabled. | 1597 | * @ap: Port to be disabled. |
1581 | * | 1598 | * |