fcdevice.h 774 B

12345678910111213141516171819202122232425262728
  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. #include <linux/if_fc.h>
  21. #ifdef __KERNEL__
  22. struct net_device *alloc_fcdev(int sizeof_priv);
  23. #endif
  24. #endif /* _LINUX_FCDEVICE_H */