xref: /OK3568_Linux_fs/kernel/arch/m68k/include/asm/natfeat.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * ARAnyM hardware support via Native Features (natfeats)
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Copyright (c) 2005 Petr Stehlik of ARAnyM dev team
5*4882a593Smuzhiyun  *
6*4882a593Smuzhiyun  * This software may be used and distributed according to the terms of
7*4882a593Smuzhiyun  * the GNU General Public License (GPL), incorporated herein by reference.
8*4882a593Smuzhiyun  */
9*4882a593Smuzhiyun #include <linux/compiler.h>
10*4882a593Smuzhiyun 
11*4882a593Smuzhiyun #ifndef _NATFEAT_H
12*4882a593Smuzhiyun #define _NATFEAT_H
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun long nf_get_id(const char *feature_name);
15*4882a593Smuzhiyun long nf_call(long id, ...);
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun void nf_init(void);
18*4882a593Smuzhiyun void nf_shutdown(void);
19*4882a593Smuzhiyun 
20*4882a593Smuzhiyun void nfprint(const char *fmt, ...)
21*4882a593Smuzhiyun 	__printf(1, 2);
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun # endif /* _NATFEAT_H */
24