projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d00dd2f
)
x86/asm: Fix an assembler warning with current binutils
author
Mikulas Patocka
<mpatocka@redhat.com>
Tue, 3 Jan 2023 15:24:11 +0000
(10:24 -0500)
committer
Ingo Molnar
<mingo@kernel.org>
Tue, 3 Jan 2023 16:55:11 +0000
(17:55 +0100)
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
arch/x86/lib/iomap_copy_64.S
patch
|
blob
|
history
diff --git
a/arch/x86/lib/iomap_copy_64.S
b/arch/x86/lib/iomap_copy_64.S
index a1f9416bf67a53df1f99f1315c48d78167f06060..6ff2f56cb0f71ae8a9066157c31babe112fc57aa 100644
(file)
--- 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 movs
d
+ rep movs
l
RET
SYM_FUNC_END(__iowrite32_copy)