]> Joshua Wise's Git repositories - netwatch.git/blame - net/etherboot-compat.h
Merge branch 'master' of nyus:/storage/git/netwatch
[netwatch.git] / net / etherboot-compat.h
CommitLineData
748534f4
JP
1#define ETH_ALEN 6
2
3struct dev {
4 void (*disable) (struct dev *dev);
5};
6
7struct nic {
8 char * packet;
9 int packetlen;
10
11 unsigned int ioaddr;
12 unsigned int irqno;
13
14 int (*poll) (struct nic *nic, int retrieve);
15 void (*transmit) (const char *dest_addr, unsigned int proto, unsigned int size, const char *pkt);
16};
17
18#define virt_to_bus(x) ((unsigned long)x)
This page took 0.023461 seconds and 4 git commands to generate.