be38f03f7db1b11c09aab1a87200e9d01e2a0ac3
[openwrt/svn-archive/archive.git] / target / linux / pxa / patches-2.6.21 / 014-ethernet-config.patch
1 --- a/drivers/net/smc91x.h
2 +++ b/drivers/net/smc91x.h
3 @@ -55,6 +55,21 @@
4 #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
5 #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
6
7 +#elif defined(CONFIG_ARCH_GUMSTIX)
8 +#define SMC_CAN_USE_8BIT 0
9 +#define SMC_CAN_USE_16BIT 1
10 +#define SMC_CAN_USE_32BIT 0
11 +#define SMC_NOWAIT 1
12 +#define SMC_USE_PXA_DMA 1
13 +#define SMC_IO_SHIFT 0
14 +#define SMC_inw(a, r) readw((a) + (r))
15 +#define SMC_outw(v, a, r) writew(v, (a) + (r))
16 +#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
17 +#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
18 +#define RPC_LSA_DEFAULT RPC_LED_100_10
19 +#define RPC_LSB_DEFAULT RPC_LED_TX_RX
20 +
21 +
22 #elif defined(CONFIG_REDWOOD_5) || defined(CONFIG_REDWOOD_6)
23
24 /* We can only do 16-bit reads and writes in the static memory space. */