Skip to content

Commit

Permalink
x86/asm: Fix an assembler warning with current binutils
Browse files Browse the repository at this point in the history
commit 55d2353 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>
  • Loading branch information
Mikulas Patocka authored and gregkh committed Feb 6, 2023
1 parent 1a51193 commit 8667280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/lib/iomap_copy_64.S
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
*/
ENTRY(__iowrite32_copy)
movl %edx,%ecx
rep movsd
rep movsl
ret
ENDPROC(__iowrite32_copy)

0 comments on commit 8667280

Please sign in to comment.