]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: atomic_lse: match asm register sizes
authorMark Rutland <mark.rutland@arm.com>
Wed, 3 May 2017 15:09:37 +0000 (16:09 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Tue, 9 May 2017 16:47:17 +0000 (17:47 +0100)
commit2cc4415c70cdad402b3ac715c19ec4228e64efdc
tree91552b40605f27ca1850a0a18be64c768e83a2f5
parent92779441e0d64b3b2020a8ad05d69f974d27f061
arm64: atomic_lse: match asm register sizes

The LSE atomic code uses asm register variables to ensure that
parameters are allocated in specific registers. In the majority of cases
we specifically ask for an x register when using 64-bit values, but in a
couple of cases we use a w regsiter for a 64-bit value.

For asm register variables, the compiler only cares about the register
index, with wN and xN having the same meaning. The compiler determines
the register size to use based on the type of the variable. Thus, this
inconsistency is merely confusing, and not harmful to code generation.

For consistency, this patch updates those cases to use the x register
alias. There should be no functional change as a result of this patch.

Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/atomic_lse.h