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 <mark.marshall@omicron.at>
Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
diff --git a/at45db.c b/at45db.c
index 5c90418..b1a81ef 100644
--- a/at45db.c
+++ b/at45db.c
@@ -460,7 +460,7 @@
return at45db_erase(flash, opcode, at45db_convert_addr(addr, page_size), 200000, 100);
}
-static int at45db_fill_buffer1(struct flashctx *flash, uint8_t *bytes, unsigned int off, unsigned int len)
+static int at45db_fill_buffer1(struct flashctx *flash, const uint8_t *bytes, unsigned int off, unsigned int len)
{
const unsigned int page_size = flash->chip->page_size;
if ((off + len) > page_size) {
@@ -518,7 +518,7 @@
return 0;
}
-static int at45db_program_page(struct flashctx *flash, uint8_t *buf, unsigned int at45db_addr)
+static int at45db_program_page(struct flashctx *flash, const uint8_t *buf, unsigned int at45db_addr)
{
int ret = at45db_fill_buffer1(flash, buf, 0, flash->chip->page_size);
if (ret != 0) {
@@ -535,7 +535,7 @@
return 0;
}
-int spi_write_at45db(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len)
+int spi_write_at45db(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len)
{
const unsigned int page_size = flash->chip->page_size;
const unsigned int total_size = flash->chip->total_size;