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>
This commit is contained in:
parent
1a5119369a
commit
8667280a67
@ -10,6 +10,6 @@
|
|||||||
*/
|
*/
|
||||||
ENTRY(__iowrite32_copy)
|
ENTRY(__iowrite32_copy)
|
||||||
movl %edx,%ecx
|
movl %edx,%ecx
|
||||||
rep movsd
|
rep movsl
|
||||||
ret
|
ret
|
||||||
ENDPROC(__iowrite32_copy)
|
ENDPROC(__iowrite32_copy)
|
||||||
|
Loading…
Reference in New Issue
Block a user