From f20b7beff054eb316088d590094d9efbc68dbee1 Mon Sep 17 00:00:00 2001 From: Mark Marshall Date: Fri, 9 May 2014 21:16:21 +0000 Subject: Add 'const' keyword to chip write and other function prototypes Corresponding to flashrom svn r1789. Inspired by and mostly based on a patch Signed-off-by: Mark Marshall Signed-off-by: Stefan Tauner Acked-by: Stefan Tauner --- programmer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'programmer.c') diff --git a/programmer.c b/programmer.c index bf7dca1..1874929 100644 --- a/programmer.c +++ b/programmer.c @@ -78,8 +78,7 @@ uint32_t fallback_chip_readl(const struct flashctx *flash, const chipaddr addr) return val; } -void fallback_chip_writen(const struct flashctx *flash, uint8_t *buf, - chipaddr addr, size_t len) +void fallback_chip_writen(const struct flashctx *flash, const uint8_t *buf, chipaddr addr, size_t len) { size_t i; for (i = 0; i < len; i++) -- cgit v1.1