Remove math related to macros (#560)

This commit is contained in:
louist103
2024-05-06 21:05:54 -04:00
committed by GitHub
parent 323107bd3e
commit 7b8e5215de
+4 -4
View File
@@ -9,10 +9,10 @@
#define OS_CYCLES_TO_NSEC(c) (((u64)(c) * (1000000000LL / 15625000LL)) / (OS_CPU_COUNTER / 15625000LL))
#define OS_CYCLES_TO_USEC(c) (((u64)(c) * (1000000LL / 15625LL)) / (OS_CPU_COUNTER / 15625LL))
#define OS_K0_TO_PHYSICAL(x) (u32)(((char*)(x)-0x80000000))
#define OS_K1_TO_PHYSICAL(x) (0) //(u32)(((char*)(x)-0xA0000000))
#define OS_K0_TO_PHYSICAL(x) (x)
#define OS_K1_TO_PHYSICAL(x) (x)
#define OS_PHYSICAL_TO_K0(x) (void*)(((u32)(x) + 0x80000000))
#define OS_PHYSICAL_TO_K1(x) (void*)(((u32)(x) + 0xA0000000))
#define OS_PHYSICAL_TO_K0(x) (x)
#define OS_PHYSICAL_TO_K1(x) (x)
#endif