repo.or.cz
/
barebox-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix error return value while loading environment
[barebox-mini2440.git]
/
include
/
dm9000.h
blob
3cc52356b28231772494770cfe440b35f3c51fe0
1
2
#ifndef __DM9000_H__
3
#define __DM9000_H__
4
5
#define DM9000_WIDTH_8 1
6
#define DM9000_WIDTH_16 2
7
#define DM9000_WIDTH_32 3
8
9
struct
dm9000_platform_data
{
10
unsigned long
iobase
;
11
unsigned long
iodata
;
12
int
buswidth
;
13
};
14
15
#endif
/* __DM9000_H__ */
16