diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ahci.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ahci.h b/include/ahci.h index 6d917121c6..0bdedac187 100644 --- a/include/ahci.h +++ b/include/ahci.h @@ -135,12 +135,12 @@ struct ahci_sg { }; struct ahci_ioports { - u32 cmd_addr; - u32 scr_addr; - u32 port_mmio; + void __iomem *cmd_addr; + void __iomem *scr_addr; + void __iomem *port_mmio; struct ahci_cmd_hdr *cmd_slot; struct ahci_sg *cmd_tbl_sg; - u32 cmd_tbl; + ulong cmd_tbl; u32 rx_fis; }; |