]> git.baikalelectronics.ru Git - kernel.git/commitdiff
x86/asm: Fix an assembler warning with current binutils
authorMikulas Patocka <mpatocka@redhat.com>
Tue, 3 Jan 2023 15:24:11 +0000 (10:24 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Feb 2023 06:52:48 +0000 (07:52 +0100)
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>
arch/x86/lib/iomap_copy_64.S

index a9bdf0805be048a1c30d94ef1dd7ca0af16540ee..1329d7ca05b5f904d3f37be81edb74b887a3308d 100644 (file)
@@ -10,6 +10,6 @@
  */
 ENTRY(__iowrite32_copy)
        movl %edx,%ecx
-       rep movsd
+       rep movsl
        ret
 ENDPROC(__iowrite32_copy)