aboutsummaryrefslogtreecommitdiff
path: root/sim/bfin/dv-bfin_emac.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-01-04 22:24:03 -0500
committerMike Frysinger <vapier@gentoo.org>2016-01-04 22:24:03 -0500
commitbc273e17510c7680bcffee75858d374aa93f7e4b (patch)
tree70fafc5ebb2b4104b5d0169578f8e24f4a497ba4 /sim/bfin/dv-bfin_emac.c
parentac8eefeb243ad326946c3b2b78ba5d1367fe0f99 (diff)
downloadgdb-bc273e17510c7680bcffee75858d374aa93f7e4b.zip
gdb-bc273e17510c7680bcffee75858d374aa93f7e4b.tar.gz
gdb-bc273e17510c7680bcffee75858d374aa93f7e4b.tar.bz2
sim: unify min/max macros
Import defines from gdb/defs.h to the sim core so we can delete the various copies that already exist.
Diffstat (limited to 'sim/bfin/dv-bfin_emac.c')
-rw-r--r--sim/bfin/dv-bfin_emac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/bfin/dv-bfin_emac.c b/sim/bfin/dv-bfin_emac.c
index ec40bc5..fd3fcd3 100644
--- a/sim/bfin/dv-bfin_emac.c
+++ b/sim/bfin/dv-bfin_emac.c
@@ -413,7 +413,7 @@ bfin_emac_dma_read_buffer (struct hw *me, void *dest, int space,
if (ret < 0)
return 0;
ret += 4; /* include crc */
- pad_ret = MAX (ret + 4, 64);
+ pad_ret = max (ret + 4, 64);
len = pad_ret;
memcpy (dest, &len, 2);