|
@@ -11,12 +11,12 @@
|
|
|
* If CONFIG_SYS_CACHELINE_SIZE is defined use it for DMA alignment. Otherwise
|
|
|
* use 64-bytes, a safe default for x86.
|
|
|
*/
|
|
|
-#ifdef CONFIG_SYS_CACHELINE_SIZE
|
|
|
-#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
|
|
|
-#else
|
|
|
-#define ARCH_DMA_MINALIGN 64
|
|
|
+#ifndef CONFIG_SYS_CACHELINE_SIZE
|
|
|
+#define CONFIG_SYS_CACHELINE_SIZE 64
|
|
|
#endif
|
|
|
|
|
|
+#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
|
|
|
+
|
|
|
static inline void wbinvd(void)
|
|
|
{
|
|
|
asm volatile ("wbinvd" : : : "memory");
|