diff options
| author | Tejun Heo <htejun@gmail.com> | 2006-06-24 07:30:19 -0400 |
|---|---|---|
| committer | Jeff Garzik <jeff@garzik.org> | 2006-06-26 20:59:27 -0400 |
| commit | 5806db22cffc7557b675d3c9229f327980aee797 (patch) | |
| tree | e3ad9b2b89ad0525a29ba2e94eb4002ee30035ef /include | |
| parent | 77b08fb56a41e84b5e78b14f24d79879235e3337 (diff) | |
[PATCH] libata: implement ata_port_max_devices()
Implement ata_port_max_devices(). This function returns the number of
possible devices on a port. This will be used by new PM
implementation.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/libata.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index c227dace1d..f4284bf897 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
| @@ -888,6 +888,9 @@ static inline unsigned int ata_tag_internal(unsigned int tag) | |||
| 888 | return tag == ATA_MAX_QUEUE - 1; | 888 | return tag == ATA_MAX_QUEUE - 1; |
| 889 | } | 889 | } |
| 890 | 890 | ||
| 891 | /* | ||
| 892 | * device helpers | ||
| 893 | */ | ||
| 891 | static inline unsigned int ata_class_enabled(unsigned int class) | 894 | static inline unsigned int ata_class_enabled(unsigned int class) |
| 892 | { | 895 | { |
| 893 | return class == ATA_DEV_ATA || class == ATA_DEV_ATAPI; | 896 | return class == ATA_DEV_ATA || class == ATA_DEV_ATAPI; |
| @@ -918,6 +921,17 @@ static inline unsigned int ata_dev_absent(const struct ata_device *dev) | |||
| 918 | return ata_class_absent(dev->class); | 921 | return ata_class_absent(dev->class); |
| 919 | } | 922 | } |
| 920 | 923 | ||
| 924 | /* | ||
| 925 | * port helpers | ||
| 926 | */ | ||
| 927 | static inline int ata_port_max_devices(const struct ata_port *ap) | ||
| 928 | { | ||
| 929 | if (ap->flags & ATA_FLAG_SLAVE_POSS) | ||
| 930 | return 2; | ||
| 931 | return 1; | ||
| 932 | } | ||
| 933 | |||
| 934 | |||
| 921 | static inline u8 ata_chk_status(struct ata_port *ap) | 935 | static inline u8 ata_chk_status(struct ata_port *ap) |
| 922 | { | 936 | { |
| 923 | return ap->ops->check_status(ap); | 937 | return ap->ops->check_status(ap); |
