diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-18 18:08:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-18 18:08:35 -0400 |
commit | 2af170dd241810212cbdbdc802ba7d39e3fb23b9 (patch) | |
tree | 3d16719aa102444337f161c457502704a4967a53 /include/linux | |
parent | ab08ed1770140ebcf1be1657087689832b755874 (diff) | |
parent | 3be6cbd73f74b4a3da82cc7d6e1688a4ae595fc7 (diff) |
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev
* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev:
[libata] kill ata_sg_is_last()
Update libata driver for bf548 atapi controller against the 2.6.24 tree.
libata-sff: Correct use of check_status()
drivers/ata: add support to Freescale 3.0Gbps SATA Controller
pata_acpi: fix build breakage if !CONFIG_PM
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/libata.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index 377e6d4d9be3..bc3b6fc7b98d 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -1037,18 +1037,6 @@ extern void ata_port_pbar_desc(struct ata_port *ap, int bar, ssize_t offset, | |||
1037 | /* | 1037 | /* |
1038 | * qc helpers | 1038 | * qc helpers |
1039 | */ | 1039 | */ |
1040 | static inline int | ||
1041 | ata_sg_is_last(struct scatterlist *sg, struct ata_queued_cmd *qc) | ||
1042 | { | ||
1043 | if (sg == &qc->pad_sgent) | ||
1044 | return 1; | ||
1045 | if (qc->pad_len) | ||
1046 | return 0; | ||
1047 | if (qc->n_iter == qc->n_elem) | ||
1048 | return 1; | ||
1049 | return 0; | ||
1050 | } | ||
1051 | |||
1052 | static inline struct scatterlist * | 1040 | static inline struct scatterlist * |
1053 | ata_qc_first_sg(struct ata_queued_cmd *qc) | 1041 | ata_qc_first_sg(struct ata_queued_cmd *qc) |
1054 | { | 1042 | { |