hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/arch/mips/include/asm/mach-tx39xx/mangle-port.h
....@@ -14,11 +14,11 @@
1414
1515 #define ioswabb(a, x) (x)
1616 #define __mem_ioswabb(a, x) (x)
17
-#define ioswabw(a, x) le16_to_cpu(x)
17
+#define ioswabw(a, x) le16_to_cpu((__force __le16)(x))
1818 #define __mem_ioswabw(a, x) (x)
19
-#define ioswabl(a, x) le32_to_cpu(x)
19
+#define ioswabl(a, x) le32_to_cpu((__force __le32)(x))
2020 #define __mem_ioswabl(a, x) (x)
21
-#define ioswabq(a, x) le64_to_cpu(x)
21
+#define ioswabq(a, x) le64_to_cpu((__force __le64)(x))
2222 #define __mem_ioswabq(a, x) (x)
2323
2424 #endif /* __ASM_MACH_TX39XX_MANGLE_PORT_H */