Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112131415161718192021 |
- #ifndef _SKELETON_H
- #define _SKELETON_H
-
- /** @file
- *
- * Skeleton network driver
- *
- */
-
- FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
-
- /** Skeleton BAR size */
- #define SKELETON_BAR_SIZE 256
-
- /** A skeleton network card */
- struct skeleton_nic {
- /** Registers */
- void *regs;
- };
-
- #endif /* _SKELETON_H */
|