mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 06:23:18 +02:00
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 <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/40324 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:

committed by
Angel Pons

parent
e0272e2b6f
commit
e4ddc36371
@ -612,9 +612,9 @@ struct spi_master {
|
||||
uint32_t features;
|
||||
unsigned int max_data_read; // (Ideally,) maximum data read size in one go (excluding opcode+address).
|
||||
unsigned int max_data_write; // (Ideally,) maximum data write size in one go (excluding opcode+address).
|
||||
int (*command)(struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
|
||||
int (*command)(const struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
|
||||
const unsigned char *writearr, unsigned char *readarr);
|
||||
int (*multicommand)(struct flashctx *flash, struct spi_command *cmds);
|
||||
int (*multicommand)(const struct flashctx *flash, struct spi_command *cmds);
|
||||
|
||||
/* Optimized functions for this master */
|
||||
int (*read)(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
|
||||
@ -623,9 +623,9 @@ struct spi_master {
|
||||
const void *data;
|
||||
};
|
||||
|
||||
int default_spi_send_command(struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
|
||||
int default_spi_send_command(const struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
|
||||
const unsigned char *writearr, unsigned char *readarr);
|
||||
int default_spi_send_multicommand(struct flashctx *flash, struct spi_command *cmds);
|
||||
int default_spi_send_multicommand(const struct flashctx *flash, struct spi_command *cmds);
|
||||
int default_spi_read(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int default_spi_write_256(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int default_spi_write_aai(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
|
||||
|
Reference in New Issue
Block a user