aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hal_io_fmc.c2
1 files changed, 1 insertions, 1 deletions
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;