summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMikulas Patocka <mpatocka@redhat.com>2023-01-03 10:24:11 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-02-06 07:49:44 +0100
commit88992ac7734ea383dfe5e080f7f00e939ba02565 (patch)
tree8f2d4ad2fde702a035d0b66c86bbc55c46d3ceeb /arch
parentaf5e3bc59d1e576e00b9ab73fb9d439f932b37fb (diff)
downloadlinux-stable-88992ac7734ea383dfe5e080f7f00e939ba02565.tar.gz
linux-stable-88992ac7734ea383dfe5e080f7f00e939ba02565.tar.bz2
linux-stable-88992ac7734ea383dfe5e080f7f00e939ba02565.zip
x86/asm: Fix an assembler warning with current binutils
commit 55d235361fccef573990dfa5724ab453866e7816 upstream. Fix a warning: "found `movsd'; assuming `movsl' was meant" Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Signed-off-by: Ingo Molnar <mingo@kernel.org> Cc: linux-kernel@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/lib/iomap_copy_64.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/iomap_copy_64.S b/arch/x86/lib/iomap_copy_64.S
index 33147fef3452..f1024b51cfee 100644
--- a/arch/x86/lib/iomap_copy_64.S
+++ b/arch/x86/lib/iomap_copy_64.S
@@ -22,6 +22,6 @@
*/
ENTRY(__iowrite32_copy)
movl %edx,%ecx
- rep movsd
+ rep movsl
ret
ENDPROC(__iowrite32_copy)