summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/bfin/network/ethernet.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libcpu/bfin/network/ethernet.c')
-rw-r--r--c/src/lib/libcpu/bfin/network/ethernet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/lib/libcpu/bfin/network/ethernet.c b/c/src/lib/libcpu/bfin/network/ethernet.c
index 873d105250..8903e0355a 100644
--- a/c/src/lib/libcpu/bfin/network/ethernet.c
+++ b/c/src/lib/libcpu/bfin/network/ethernet.c
@@ -629,7 +629,7 @@ static void initializeHardware(struct bfin_ethernetSoftc *sc) {
including other status structures, so we can safely manage both the
processor and DMA writing to them. So this rounds up the structure
sizes to a multiple of the cache line size. */
- cacheAlignment = rtems_cache_get_data_line_size();
+ cacheAlignment = (int) rtems_cache_get_data_line_size();
if (cacheAlignment == 0)
cacheAlignment = 1;
rxStatusSize = cacheAlignment * ((sizeof(rxStatusT) + cacheAlignment - 1) /