mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28:05 -04:00
8 lines
248 B
C
8 lines
248 B
C
/*
|
|
* Barriers redefined for RealView ARM11MPCore platforms with L220 cache
|
|
* controller to work around hardware errata causing the outer_sync()
|
|
* operation to deadlock the system.
|
|
*/
|
|
#define mb() dsb()
|
|
#define rmb() dsb()
|
|
#define wmb() mb()
|