Changeset 57358 in vbox for trunk/src/VBox/HostDrivers/VBoxNetAdp/linux/VBoxNetAdp-linux.c
- Timestamp:
- Aug 14, 2015 3:16:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetAdp/linux/VBoxNetAdp-linux.c
r56293 r57358 16 16 */ 17 17 18 /******************************************************************************* 19 * Header Files * 20 *******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 #include "the-linux-kernel.h" 22 23 #include "version-generated.h" … … 45 46 #include "../VBoxNetAdpInternal.h" 46 47 47 /******************************************************************************* 48 * Defined Constants And Macros * 49 *******************************************************************************/ 48 49 /********************************************************************************************************************************* 50 * Defined Constants And Macros * 51 *********************************************************************************************************************************/ 50 52 #define VBOXNETADP_LINUX_NAME "vboxnet%d" 51 53 #define VBOXNETADP_CTL_DEV_NAME "vboxnetctl" … … 53 55 #define VBOXNETADP_FROM_IFACE(iface) ((PVBOXNETADP) ifnet_softc(iface)) 54 56 55 /******************************************************************************* 56 * Internal Functions * 57 *******************************************************************************/ 57 58 /********************************************************************************************************************************* 59 * Internal Functions * 60 *********************************************************************************************************************************/ 58 61 static int VBoxNetAdpLinuxInit(void); 59 62 static void VBoxNetAdpLinuxUnload(void); … … 69 72 #endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 36) */ 70 73 71 /******************************************************************************* 72 * Global Variables * 73 *******************************************************************************/ 74 75 /********************************************************************************************************************************* 76 * Global Variables * 77 *********************************************************************************************************************************/ 74 78 module_init(VBoxNetAdpLinuxInit); 75 79 module_exit(VBoxNetAdpLinuxUnload);
Note:
See TracChangeset
for help on using the changeset viewer.