xref: /OK3568_Linux_fs/kernel/include/linux/fcdevice.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0-or-later */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * INET		An implementation of the TCP/IP protocol suite for the LINUX
4*4882a593Smuzhiyun  *		operating system.  NET  is implemented using the  BSD Socket
5*4882a593Smuzhiyun  *		interface as the means of communication with the user level.
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  *		Definitions for the Fibre Channel handlers.
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * Version:	@(#)fcdevice.h	1.0.0	09/26/98
10*4882a593Smuzhiyun  *
11*4882a593Smuzhiyun  * Authors:	Vineet Abraham <vma@iol.unh.edu>
12*4882a593Smuzhiyun  *
13*4882a593Smuzhiyun  *		Relocated to include/linux where it belongs by Alan Cox
14*4882a593Smuzhiyun  *							<gw4pts@gw4pts.ampr.org>
15*4882a593Smuzhiyun  *
16*4882a593Smuzhiyun  *	WARNING: This move may well be temporary. This file will get merged with others RSN.
17*4882a593Smuzhiyun  */
18*4882a593Smuzhiyun #ifndef _LINUX_FCDEVICE_H
19*4882a593Smuzhiyun #define _LINUX_FCDEVICE_H
20*4882a593Smuzhiyun 
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun #include <linux/if_fc.h>
23*4882a593Smuzhiyun 
24*4882a593Smuzhiyun #ifdef __KERNEL__
25*4882a593Smuzhiyun struct net_device *alloc_fcdev(int sizeof_priv);
26*4882a593Smuzhiyun #endif
27*4882a593Smuzhiyun 
28*4882a593Smuzhiyun #endif	/* _LINUX_FCDEVICE_H */
29