Rather than hardcode the constant, use ARRAY_SIZE to get it. Should be no
functional changes here.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
+2012-03-18 Mike Frysinger <vapier@gentoo.org>
+
+ * dv-bfin_ebiu_amc.c (bfin_ebiu_amc_attach_address_callback): Use
+ ARRAY_SIZE rather than hardcoded constant.
+
2012-02-04 Mike Frysinger <vapier@gentoo.org>
* config.in: Regenerate.
HW_TRACE ((me, "attach - level=%d, space=%d, addr=0x%lx, nr_bytes=%lu, client=%s",
level, space, (unsigned long) addr, (unsigned long) nr_bytes, hw_path (client)));
- if (addr + nr_bytes > 4)
+ if (addr + nr_bytes > ARRAY_SIZE (amc->slaves))
hw_abort (me, "ebiu amc attaches are done in terms of banks");
while (nr_bytes--)