diff options
-rw-r--r-- | drivers/net/smc91x.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h index 9f9f8f2d5338..95ac2ddca433 100644 --- a/drivers/net/smc91x.h +++ b/drivers/net/smc91x.h | |||
@@ -367,6 +367,24 @@ static inline void LPD7_SMC_outsw (unsigned char* a, int r, | |||
367 | 367 | ||
368 | #define SMC_IRQ_FLAGS (0) | 368 | #define SMC_IRQ_FLAGS (0) |
369 | 369 | ||
370 | #elif defined(CONFIG_ARCH_VERSATILE) | ||
371 | |||
372 | #define SMC_CAN_USE_8BIT 1 | ||
373 | #define SMC_CAN_USE_16BIT 1 | ||
374 | #define SMC_CAN_USE_32BIT 1 | ||
375 | #define SMC_NOWAIT 1 | ||
376 | |||
377 | #define SMC_inb(a, r) readb((a) + (r)) | ||
378 | #define SMC_inw(a, r) readw((a) + (r)) | ||
379 | #define SMC_inl(a, r) readl((a) + (r)) | ||
380 | #define SMC_outb(v, a, r) writeb(v, (a) + (r)) | ||
381 | #define SMC_outw(v, a, r) writew(v, (a) + (r)) | ||
382 | #define SMC_outl(v, a, r) writel(v, (a) + (r)) | ||
383 | #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l) | ||
384 | #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l) | ||
385 | |||
386 | #define SMC_IRQ_FLAGS (0) | ||
387 | |||
370 | #else | 388 | #else |
371 | 389 | ||
372 | #define SMC_CAN_USE_8BIT 1 | 390 | #define SMC_CAN_USE_8BIT 1 |