From e4ddc36371bc07c71889f21f9144160c756e9825 Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Sun, 12 Apr 2020 17:27:53 +1000 Subject: const'ify flashctx to align signatures with cros flashrom The ChromiumOS flashrom fork has since const'ify flashctx in a few places. This aligns the function signatures to match with downstream to ease forward porting patches out of downstream back into mainline flashrom. This patch is minimum viable alignment and so feedback is welcome. Change-Id: Iff6dbda13cb0d941481c0d204b9c30895630fbd1 Signed-off-by: Edward O'Callaghan Reviewed-on: https://review.coreboot.org/c/flashrom/+/40324 Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- chipdrivers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chipdrivers.h') diff --git a/chipdrivers.h b/chipdrivers.h index aa240851b..04963c229 100644 --- a/chipdrivers.h +++ b/chipdrivers.h @@ -65,8 +65,8 @@ int spi_exit_4ba(struct flashctx *flash); int spi_set_extended_address(struct flashctx *, uint8_t addr_high); /* spi25_statusreg.c */ -uint8_t spi_read_status_register(struct flashctx *flash); -int spi_write_status_register(struct flashctx *flash, int status); +uint8_t spi_read_status_register(const struct flashctx *flash); +int spi_write_status_register(const struct flashctx *flash, int status); int s25fs_read_cr(struct flashctx *const flash, uint32_t addr); int s25fs_write_cr(struct flashctx *const flash, uint32_t addr, uint8_t data); int s25fs_restore_cr3nv(struct flashctx *const flash, uint8_t cfg); -- cgit v1.2.3