iPXE
skeleton.h
Go to the documentation of this file.
1 #ifndef _SKELETON_H
2 #define _SKELETON_H
3 
4 /** @file
5  *
6  * Skeleton network driver
7  *
8  */
9 
10 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11 
12 /** Skeleton BAR size */
13 #define SKELETON_BAR_SIZE 256
14 
15 /** A skeleton network card */
16 struct skeleton_nic {
17  /** Registers */
18  void *regs;
19 };
20 
21 #endif /* _SKELETON_H */
A skeleton network card.
Definition: skeleton.h:16
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
void * regs
Registers.
Definition: skeleton.h:18