xref: /openbmc/linux/arch/x86/lib/iomap_copy_64.S (revision 775c8a3d7187b82e15ebfdae486d8ab32e017b4b)
1*775c8a3dSThomas Gleixner/* SPDX-License-Identifier: GPL-2.0-only */
2185f3d38SThomas Gleixner/*
3185f3d38SThomas Gleixner * Copyright 2006 PathScale, Inc.  All Rights Reserved.
4185f3d38SThomas Gleixner */
5185f3d38SThomas Gleixner
6185f3d38SThomas Gleixner#include <linux/linkage.h>
7185f3d38SThomas Gleixner
8185f3d38SThomas Gleixner/*
9185f3d38SThomas Gleixner * override generic version in lib/iomap_copy.c
10185f3d38SThomas Gleixner */
11185f3d38SThomas GleixnerENTRY(__iowrite32_copy)
12185f3d38SThomas Gleixner	movl %edx,%ecx
13185f3d38SThomas Gleixner	rep movsd
14185f3d38SThomas Gleixner	ret
15185f3d38SThomas GleixnerENDPROC(__iowrite32_copy)
16