summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward O'Callaghan <quasisec@google.com>2020-12-19 11:57:30 +1100
committerEdward O'Callaghan <quasisec@chromium.org>2020-12-20 23:10:28 +0000
commit6cdde54ea0c84bd4b7fc4f86ccda96175b691c50 (patch)
tree4be17787c348cbd326790da3ee4b7ef34f59e39c
parent358a350e11d26e882996a704821d83b846aab0d8 (diff)
downloadflashrom-6cdde54ea0c84bd4b7fc4f86ccda96175b691c50.tar.gz
flashrom-6cdde54ea0c84bd4b7fc4f86ccda96175b691c50.tar.bz2
flashrom-6cdde54ea0c84bd4b7fc4f86ccda96175b691c50.zip
chipdrivers.h: Trivial fix style of write_28sf040() signature
This is correct on the Chromium side so fix the missing space here. Change-Id: I9dd27a4d8a1b87ce96b2a3f8cbe80f40c79b0354 Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/48744 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sam McNally <sammc@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r--chipdrivers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chipdrivers.h b/chipdrivers.h
index b42c36387..e1d6aa9e7 100644
--- a/chipdrivers.h
+++ b/chipdrivers.h
@@ -159,7 +159,7 @@ int printlock_regspace2_block_eraser_1(struct flashctx *flash);
/* sst28sf040.c */
int erase_chip_28sf040(struct flashctx *flash, unsigned int addr, unsigned int blocklen);
int erase_sector_28sf040(struct flashctx *flash, unsigned int address, unsigned int sector_size);
-int write_28sf040(struct flashctx *flash, const uint8_t *buf,unsigned int start, unsigned int len);
+int write_28sf040(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
int unprotect_28sf040(struct flashctx *flash);
int protect_28sf040(struct flashctx *flash);