summaryrefslogtreecommitdiffstats
path: root/sst28sf040.c
diff options
context:
space:
mode:
authorStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2011-09-18 22:42:18 +0000
committerStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2011-09-18 22:42:18 +0000
commit8c35745fcf3ed6eb2769beda0c8b941df07f6175 (patch)
tree2f3c43a3589edc55e7143b39d40df4a0cd039183 /sst28sf040.c
parente3185c0599d77c06b9665c9721649b96108c894f (diff)
downloadflashrom-8c35745fcf3ed6eb2769beda0c8b941df07f6175.tar.gz
flashrom-8c35745fcf3ed6eb2769beda0c8b941df07f6175.tar.bz2
flashrom-8c35745fcf3ed6eb2769beda0c8b941df07f6175.zip
Revert "Unsignify lengths and addresses in chip functions and structs"
- probe_timing was changed to unsigned although we use negative values for special cases - some code was not changed along hence did no longer compile: * dediprog's read and write functions * linux_spi's read and write functions - it introduced a number of new sign conversion warnings (http://paste.flashrom.org/view.php?id=832) To be safe this patch reverts all changes made in r1448, a corrected patch will follow later. Thanks to idwer for pointing out the problem first! Corresponding to flashrom svn r1450. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Diffstat (limited to 'sst28sf040.c')
-rw-r--r--sst28sf040.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sst28sf040.c b/sst28sf040.c
index 2038d537d..d621cc755 100644
--- a/sst28sf040.c
+++ b/sst28sf040.c
@@ -76,7 +76,7 @@ int erase_sector_28sf040(struct flashchip *flash, unsigned int address, unsigned
}
/* chunksize is 1 */
-int write_28sf040(struct flashchip *flash, uint8_t *src, unsigned int start, unsigned int len)
+int write_28sf040(struct flashchip *flash, uint8_t *src, int start, int len)
{
int i;
chipaddr bios = flash->virtual_memory;