aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-02-21 20:21:32 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2017-02-21 20:21:32 -0500
commit79f4d1d5c0d7d115b5a693a5bb369e69efb7e7a5 (patch)
tree0b571a25f3666ed36c25139c75705dde5682488a /include
parent97a229f90731894f46b85c20bcc1842f4a63cb78 (diff)
parent73b2951414f661e22dc4b88e4e6590c9406cf822 (diff)
Merge branch 'for-4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata
Pull libata updates from Tejun Heo: - Bartlomiej added pata_falcon - Christoph is trying to remove use of static 4k buf. It's still WIP - config cleanup around HAS_DMA - other fixes and driver-specific changes * 'for-4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata: (29 commits) ata: pata_of_platform: using of_property_read_u32() helper pata_atiixp: Don't use unconnected secondary port on SB600/SB700 libata-sff: Don't scan disabled ports when checking for legacy mode. pata_octeon_cf: remove unused local variables from octeon_cf_set_piomode() ahci: qoriq: added ls2088a platforms support ahci: qoriq: report error when ecc register address is missing in dts ahci: qoriq: added a condition to enable dma coherence Revert "libata: switch to dynamic allocation instead of ata_scsi_rbuf" ahci: imx: fix building without hwmon or thermal ata: add Atari Falcon PATA controller driver ata: pass queued command to ->sff_data_xfer method ata: allow subsystem to be used on m68k arch libata: switch to dynamic allocation instead of ata_scsi_rbuf libata: don't call ata_scsi_rbuf_fill for command without a response buffer libata: call ->scsi_done from ata_scsi_simulate libata: remove the done callback from ata_scsi_args libata: move struct ata_scsi_args to libata-scsi.c libata: avoid global response buffer in atapi_qc_complete libata-eh: Use switch() instead of sparse array for protocol strings ata: sata_mv: Convert to devm_ioremap_resource() ...
Diffstat (limited to 'include')
-rw-r--r--include/linux/libata.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h
index 46e18c0619c6..c9a69fc8821e 100644
--- a/include/linux/libata.h
+++ b/include/linux/libata.h
@@ -968,7 +968,7 @@ struct ata_port_operations {
968 void (*sff_tf_read)(struct ata_port *ap, struct ata_taskfile *tf); 968 void (*sff_tf_read)(struct ata_port *ap, struct ata_taskfile *tf);
969 void (*sff_exec_command)(struct ata_port *ap, 969 void (*sff_exec_command)(struct ata_port *ap,
970 const struct ata_taskfile *tf); 970 const struct ata_taskfile *tf);
971 unsigned int (*sff_data_xfer)(struct ata_device *dev, 971 unsigned int (*sff_data_xfer)(struct ata_queued_cmd *qc,
972 unsigned char *buf, unsigned int buflen, int rw); 972 unsigned char *buf, unsigned int buflen, int rw);
973 void (*sff_irq_on)(struct ata_port *); 973 void (*sff_irq_on)(struct ata_port *);
974 bool (*sff_irq_check)(struct ata_port *); 974 bool (*sff_irq_check)(struct ata_port *);
@@ -1825,11 +1825,11 @@ extern void ata_sff_tf_load(struct ata_port *ap, const struct ata_taskfile *tf);
1825extern void ata_sff_tf_read(struct ata_port *ap, struct ata_taskfile *tf); 1825extern void ata_sff_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
1826extern void ata_sff_exec_command(struct ata_port *ap, 1826extern void ata_sff_exec_command(struct ata_port *ap,
1827 const struct ata_taskfile *tf); 1827 const struct ata_taskfile *tf);
1828extern unsigned int ata_sff_data_xfer(struct ata_device *dev, 1828extern unsigned int ata_sff_data_xfer(struct ata_queued_cmd *qc,
1829 unsigned char *buf, unsigned int buflen, int rw); 1829 unsigned char *buf, unsigned int buflen, int rw);
1830extern unsigned int ata_sff_data_xfer32(struct ata_device *dev, 1830extern unsigned int ata_sff_data_xfer32(struct ata_queued_cmd *qc,
1831 unsigned char *buf, unsigned int buflen, int rw); 1831 unsigned char *buf, unsigned int buflen, int rw);
1832extern unsigned int ata_sff_data_xfer_noirq(struct ata_device *dev, 1832extern unsigned int ata_sff_data_xfer_noirq(struct ata_queued_cmd *qc,
1833 unsigned char *buf, unsigned int buflen, int rw); 1833 unsigned char *buf, unsigned int buflen, int rw);
1834extern void ata_sff_irq_on(struct ata_port *ap); 1834extern void ata_sff_irq_on(struct ata_port *ap);
1835extern void ata_sff_irq_clear(struct ata_port *ap); 1835extern void ata_sff_irq_clear(struct ata_port *ap);