diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-02-09 11:39:30 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 12:14:07 -0500 |
commit | 04d4f7a1143e4fb291cd1584c9ac8de4ba584d34 (patch) | |
tree | 396b6f77b84355243b8d4b48be9925fb3986fa52 /drivers | |
parent | 92ccc5f7558f24edf7129a24a8e2ce338009b0dd (diff) |
[PATCH] ahci: trivial endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ata/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 48616c6fee9d..e2796fb40eb7 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -1173,7 +1173,7 @@ static void ahci_host_intr(struct ata_port *ap) | |||
1173 | * dangerous, we need to know more about them. Print | 1173 | * dangerous, we need to know more about them. Print |
1174 | * more of it. | 1174 | * more of it. |
1175 | */ | 1175 | */ |
1176 | const u32 *f = pp->rx_fis + RX_FIS_SDB; | 1176 | const __le32 *f = pp->rx_fis + RX_FIS_SDB; |
1177 | 1177 | ||
1178 | ata_port_printk(ap, KERN_INFO, "Spurious SDB FIS during NCQ " | 1178 | ata_port_printk(ap, KERN_INFO, "Spurious SDB FIS during NCQ " |
1179 | "issue=0x%x SAct=0x%x FIS=%08x:%08x%s\n", | 1179 | "issue=0x%x SAct=0x%x FIS=%08x:%08x%s\n", |