blob: a9bdf0805be048a1c30d94ef1dd7ca0af16540ee [file] [log] [blame]
Thomas Gleixner775c8a32019-06-04 10:11:37 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Bryan O'Sullivan0f074962006-02-01 03:05:17 -08002/*
3 * Copyright 2006 PathScale, Inc. All Rights Reserved.
Bryan O'Sullivan0f074962006-02-01 03:05:17 -08004 */
5
Jan Beulich8d379da2006-09-26 10:52:32 +02006#include <linux/linkage.h>
Jan Beulich8d379da2006-09-26 10:52:32 +02007
Bryan O'Sullivan0f074962006-02-01 03:05:17 -08008/*
9 * override generic version in lib/iomap_copy.c
10 */
Jan Beulich8d379da2006-09-26 10:52:32 +020011ENTRY(__iowrite32_copy)
Bryan O'Sullivan0f074962006-02-01 03:05:17 -080012 movl %edx,%ecx
13 rep movsd
14 ret
Jan Beulich8d379da2006-09-26 10:52:32 +020015ENDPROC(__iowrite32_copy)