ipq: Add ISB instruction in isb() for aarch32

Updated the isb function for the aarch32 config to include
ISB instruction.

Change-Id: Iea2ee7934d18d6149af4032102b1677c16b9c06c
Signed-off-by: anusha <anusharao@codeaurora.org>
This commit is contained in:
anusha 2021-01-29 14:59:40 +05:30
parent 15fd656acb
commit b992347829

View file

@ -182,7 +182,7 @@ void flush_l3_cache(void);
*/
void save_boot_params_ret(void);
#define isb() __asm__ __volatile__ ("" : : : "memory")
#define isb() __asm__ __volatile__ ("isb" : : : "memory")
#define nop() __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t");