blob: f572d0f944bb1d89cfbc1ac353b5410c249895f6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
H. Peter Anvin1965aae2008-10-22 22:26:29 -07002#ifndef _ASM_X86_MMX_H
3#define _ASM_X86_MMX_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5/*
6 * MMX 3Dnow! helper operations
7 */
8
9#include <linux/types.h>
Joe Perchesf2334072008-03-23 01:02:45 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011extern void *_mmx_memcpy(void *to, const void *from, size_t size);
12extern void mmx_clear_page(void *page);
13extern void mmx_copy_page(void *to, void *from);
14
H. Peter Anvin1965aae2008-10-22 22:26:29 -070015#endif /* _ASM_X86_MMX_H */