From 78992f6aec779a1dc56429c60bfea276405d7a8c Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Sun, 27 May 2018 16:54:26 -0400 Subject: FMC cleanup: constification, gratuitous pointer. --- hal_io_fmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hal_io_fmc.c b/hal_io_fmc.c index 25ed8f3..8a32921 100644 --- a/hal_io_fmc.c +++ b/hal_io_fmc.c @@ -114,7 +114,7 @@ hal_error_t hal_io_write(const hal_core_t *core, hal_addr_t offset, const uint8_ for (; len > 0; offset += 4, buf += 4, len -= 4) { uint32_t val; val = htonl(*(uint32_t *)buf); - fmc_write_32(offset, &val); + fmc_write_32(offset, val); } return HAL_OK; -- cgit v1.2.3