diff options
author | Tom Rini <trini@konsulko.com> | 2019-01-06 19:42:55 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-06 19:42:55 -0500 |
commit | 7e40d0a38fc42de12696c835eded8945d650bfc1 (patch) | |
tree | e55a3ce84f401b33408e7f46ace7c6c64dbf7a96 /arch/arm/mach-exynos/include/mach/system.h | |
parent | 7b84a20e68af7757fbb5722eb7bc9685000dfbed (diff) | |
parent | df1ff4d6ba591a5fcb9549e895b23c781d8fda6d (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-samsung
Diffstat (limited to 'arch/arm/mach-exynos/include/mach/system.h')
-rw-r--r-- | arch/arm/mach-exynos/include/mach/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/include/mach/system.h b/arch/arm/mach-exynos/include/mach/system.h index 4837781957..48f13c7648 100644 --- a/arch/arm/mach-exynos/include/mach/system.h +++ b/arch/arm/mach-exynos/include/mach/system.h @@ -58,7 +58,7 @@ struct exynos5_sysreg { /* Move 0xd3 value to CPSR register to enable SVC mode */ #define svc32_mode_en() __asm__ __volatile__ \ ("@ I&F disable, Mode: 0x13 - SVC\n\t" \ - "msr cpsr_c, #0x13|0xC0\n\t" : : ) + "msr cpsr_c, %0\n\t" : : "r"(0x13|0xC0)) /* Set program counter with the given value */ #define set_pc(x) __asm__ __volatile__ ("mov pc, %0\n\t" : : "r"(x)) |