blob: 3de2afa5b98dac2670ec9133f5184775e91597e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _SKELETON_H
#define _SKELETON_H
/** @file
*
* Skeleton network driver
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
/** Skeleton BAR size */
#define SKELETON_BAR_SIZE 256
/** A skeleton network card */
struct skeleton_nic {
/** Registers */
void *regs;
/** MII interface */
struct mii_interface mii;
};
#endif /* _SKELETON_H */
|