summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/include/asm/fpu/api.h
blob: 8caad859860b307240b6218523f4ea8b1fec32e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Public domain. */

#ifndef _ASM_FPU_API_H
#define _ASM_FPU_API_H

#include <linux/bottom_half.h>

#ifdef __i386__
#include <machine/npx.h>
#endif

#ifdef __amd64__
#include <machine/fpu.h>
#endif

#define kernel_fpu_begin()	fpu_kernel_enter()
#define kernel_fpu_end()	fpu_kernel_exit()

#endif