usb: host: dwc2: add clk support
[oweals/u-boot.git] / drivers / usb / host / ohci.h
index f9f02cb09c5f379cfdf33d311e52d58f17ea27b5..9b264bd92ab9e11c8be04700153bdfdb7cd23cc0 100644 (file)
@@ -14,8 +14,8 @@
 #include <asm/io.h>
 
 #ifdef CONFIG_SYS_OHCI_SWAP_REG_ACCESS
-# define ohci_readl(a) __swap_32(readl(a))
-# define ohci_writel(v, a) writel(__swap_32(v), a)
+# define ohci_readl(a) __swap_32(in_be32((u32 *)a))
+# define ohci_writel(a, b) out_be32((u32 *)b, __swap_32(a))
 #else
 # define ohci_readl(a) readl(a)
 # define ohci_writel(v, a) writel(v, a)