12345678910111213141516171819202122232425262728293031323334 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * if_ether.h - Substitute Linux header for systems without one;
- *
- * On Linux systems, this file is actually included by header file
- * net/ethernet.h which defines ethernet constants in terms of the
- * ones defined here;
- *
- *--------------------------------------------------------------------*/
- #ifndef IF_ETHER_HEADER
- #define IF_ETHER_HEADER
-
- /*====================================================================*
- *
- *--------------------------------------------------------------------*/
- #include <net/ethernet.h>
-
- /*====================================================================*
- *
- *--------------------------------------------------------------------*/
- #endif
-
|