ARM: Fix dmb opcode 2 on ARMv6

* Typo, also fix tabs
* Sorry for the spam, this should be correct now
This commit is contained in:
Alexander von Gluck IV 2014-02-26 13:22:18 -06:00
parent b6994f96c0
commit 8cfbbff4df

View File

@ -19,7 +19,7 @@
: : "r" (0) : "memory")
#define dsb() __asm__ __volatile__("mcr p15, 0, %0, c7, c10, 4" \
: : "r" (0) : "memory")
#define dmb() __asm__ __volatile__("mcr p15, 0, %0, c7, c10, 4" \
#define dmb() __asm__ __volatile__("mcr p15, 0, %0, c7, c10, 5" \
: : "r" (0) : "memory")
#else /* ARMv7+ */
#define isb() __asm__ __volatile__("isb" : : : "memory")