summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/network/greth.h
diff options
context:
space:
mode:
authorDaniel Hellstrom <daniel@gaisler.com>2012-04-05 10:23:17 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-04-06 11:38:31 -0500
commit7499b84f415844f92ca3fa27a0036ac8252357fc (patch)
tree612cd2593d4074d62b2fe99b09906ebda43e4532 /c/src/libchip/network/greth.h
parentSMC91111: updated to use shared IRQ service (diff)
downloadrtems-7499b84f415844f92ca3fa27a0036ac8252357fc.tar.bz2
GRETH: use shared-irq service instead of BSP specific set_vec()
The ISR code is updated to use argument instead of global greth structure, now that the greth private is available in the ISR. The shared-irq routines will unmask the IRQ, so the forced LEON3 BSP unmask/clear IRQ is removed. Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
Diffstat (limited to '')
-rw-r--r--c/src/libchip/network/greth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/libchip/network/greth.h b/c/src/libchip/network/greth.h
index 50ddd9991f..4a7447d792 100644
--- a/c/src/libchip/network/greth.h
+++ b/c/src/libchip/network/greth.h
@@ -18,7 +18,7 @@
typedef struct {
void *base_address;
- uint32_t vector;
+ rtems_vector_number vector;
uint32_t txd_count;
uint32_t rxd_count;
} greth_configuration_t;