blob: 03092280820b3a0866f0a98702f710587715c44a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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 */
|