diff options
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index cffad07c65bf..49761bc12cf2 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -198,18 +198,18 @@ enum { | |||
198 | }; | 198 | }; |
199 | 199 | ||
200 | struct ahci_cmd_hdr { | 200 | struct ahci_cmd_hdr { |
201 | u32 opts; | 201 | __le32 opts; |
202 | u32 status; | 202 | __le32 status; |
203 | u32 tbl_addr; | 203 | __le32 tbl_addr; |
204 | u32 tbl_addr_hi; | 204 | __le32 tbl_addr_hi; |
205 | u32 reserved[4]; | 205 | __le32 reserved[4]; |
206 | }; | 206 | }; |
207 | 207 | ||
208 | struct ahci_sg { | 208 | struct ahci_sg { |
209 | u32 addr; | 209 | __le32 addr; |
210 | u32 addr_hi; | 210 | __le32 addr_hi; |
211 | u32 reserved; | 211 | __le32 reserved; |
212 | u32 flags_size; | 212 | __le32 flags_size; |
213 | }; | 213 | }; |
214 | 214 | ||
215 | struct ahci_host_priv { | 215 | struct ahci_host_priv { |