aboutsummaryrefslogtreecommitdiffstats
path: root/include/flash.h
diff options
context:
space:
mode:
authorEdward O'Callaghan <quasisec@google.com>2022-08-12 12:56:43 +1000
committerEdward O'Callaghan <quasisec@chromium.org>2022-08-25 00:29:00 +0000
commit8f9e910eb342799c582ee2c9569ffb4be6296719 (patch)
treead485edfa2df067c0eae7fbe7c4f6901eee86cd9 /include/flash.h
parent16744f9e96d0f1e203d4a67ad2bfd0c50e3c437a (diff)
downloadflashrom-8f9e910eb342799c582ee2c9569ffb4be6296719.tar.gz
flashrom-8f9e910eb342799c582ee2c9569ffb4be6296719.tar.bz2
flashrom-8f9e910eb342799c582ee2c9569ffb4be6296719.zip
parallel.c: Consoldiate parallel master registration logic
This is analogous to spi.c and opaque.c however parallel logic was previously never consoldiated. This free's up flashrom.c from namespace pollution. BUG=b:242246291 TEST=builds with both make and meson. Change-Id: Ie08e2e6c51ccef5281386bf7e3df439b91573974 Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66651 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Thomas Heijligen <src@posteo.de>
Diffstat (limited to 'include/flash.h')
-rw-r--r--include/flash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/flash.h b/include/flash.h
index a1b83dab..79aaa64a 100644
--- a/include/flash.h
+++ b/include/flash.h
@@ -372,6 +372,7 @@ struct flashrom_flashctx {
extern const struct flashchip flashchips[];
extern const unsigned int flashchips_size;
+/* parallel.c */
void chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr);
void chip_writew(const struct flashctx *flash, uint16_t val, chipaddr addr);
void chip_writel(const struct flashctx *flash, uint32_t val, chipaddr addr);