Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8667280a authored by Mikulas Patocka's avatar Mikulas Patocka Committed by Greg Kroah-Hartman
Browse files

x86/asm: Fix an assembler warning with current binutils



commit 55d235361fccef573990dfa5724ab453866e7816 upstream.

Fix a warning: "found `movsd'; assuming `movsl' was meant"

Signed-off-by: default avatarMikulas Patocka <mpatocka@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1a511936
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,6 +10,6 @@
 */
ENTRY(__iowrite32_copy)
	movl %edx,%ecx
	rep movsd
	rep movsl
	ret
ENDPROC(__iowrite32_copy)