From: Mikulas Patocka Date: Tue, 3 Jan 2023 15:24:11 +0000 (-0500) Subject: x86/asm: Fix an assembler warning with current binutils X-Git-Tag: v6.1.8~168 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ca718778b77d5cc207890e03df67f8f630f6eaf;p=platform%2Fkernel%2Flinux-starfive.git x86/asm: Fix an assembler warning with current binutils [ Upstream commit 55d235361fccef573990dfa5724ab453866e7816 ] Fix a warning: "found `movsd'; assuming `movsl' was meant" Signed-off-by: Mikulas Patocka Signed-off-by: Ingo Molnar Cc: linux-kernel@vger.kernel.org Signed-off-by: Sasha Levin --- diff --git a/arch/x86/lib/iomap_copy_64.S b/arch/x86/lib/iomap_copy_64.S index a1f9416bf67a..6ff2f56cb0f7 100644 --- a/arch/x86/lib/iomap_copy_64.S +++ b/arch/x86/lib/iomap_copy_64.S @@ -10,6 +10,6 @@ */ SYM_FUNC_START(__iowrite32_copy) movl %edx,%ecx - rep movsd + rep movsl RET SYM_FUNC_END(__iowrite32_copy)