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

source code of linux/include/linux/fcdevice.h