iomap_copy_64.S 287 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright 2006 PathScale, Inc. All Rights Reserved.
  4. */
  5. #include <linux/linkage.h>
  6. /*
  7. * override generic version in lib/iomap_copy.c
  8. */
  9. SYM_FUNC_START(__iowrite32_copy)
  10. movl %edx,%ecx
  11. rep movsl
  12. RET
  13. SYM_FUNC_END(__iowrite32_copy)