diff options
author | James Bottomley <James.Bottomley@steeleye.com> | 2007-07-20 14:11:44 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-07-20 16:52:08 -0400 |
commit | 110dd8f19df534b5e464bd1d8f491195a7e62a26 (patch) | |
tree | 4c6b1875b4ed081feb898ff62206a1c140df8bea /Documentation | |
parent | fbc9a5727401442f6972bbddaeb0650f2bf2ebe2 (diff) |
[SCSI] libsas: fix scr_read/write users and update the libata documentation
This fixes up the usage in libsas (which are easy to miss, since they're
only in the scsi-misc tree) ... and also corrects the documentation on
the point of what these two function pointers actually return.
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DocBook/libata.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/DocBook/libata.tmpl b/Documentation/DocBook/libata.tmpl index e2e24b4778d4..ba9975771503 100644 --- a/Documentation/DocBook/libata.tmpl +++ b/Documentation/DocBook/libata.tmpl | |||
@@ -456,8 +456,9 @@ void (*irq_clear) (struct ata_port *); | |||
456 | 456 | ||
457 | <sect2><title>SATA phy read/write</title> | 457 | <sect2><title>SATA phy read/write</title> |
458 | <programlisting> | 458 | <programlisting> |
459 | u32 (*scr_read) (struct ata_port *ap, unsigned int sc_reg); | 459 | int (*scr_read) (struct ata_port *ap, unsigned int sc_reg, |
460 | void (*scr_write) (struct ata_port *ap, unsigned int sc_reg, | 460 | u32 *val); |
461 | int (*scr_write) (struct ata_port *ap, unsigned int sc_reg, | ||
461 | u32 val); | 462 | u32 val); |
462 | </programlisting> | 463 | </programlisting> |
463 | 464 | ||