Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

microblaze: Do not initialized regs->r1 twice in ELF_PLAT_INIT

Fix ELF_PLAT_INIT macro which initialized r1 twice which
ends in compilation warning.

Warning log:
fs/binfmt_elf.c: In function 'load_elf_binary':
fs/binfmt_elf.c:981:2: warning: operation on 'regs->r1' may be undefined [-Wsequence-point]
CC fs/dcookies.o

Signed-off-by: Michal Simek <michal.simek@xilinx.com>

+1 -1
+1 -1
arch/microblaze/include/uapi/asm/elf.h
··· 104 104 /* Added _f parameter. Is this definition correct: TBD */ 105 105 #define ELF_PLAT_INIT(_r, _f) \ 106 106 do { \ 107 - _r->r1 = _r->r1 = _r->r2 = _r->r3 = \ 107 + _r->r0 = _r->r1 = _r->r2 = _r->r3 = \ 108 108 _r->r4 = _r->r5 = _r->r6 = _r->r7 = \ 109 109 _r->r8 = _r->r9 = _r->r10 = _r->r11 = \ 110 110 _r->r12 = _r->r13 = _r->r14 = _r->r15 = \