mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 22:21:16 +02:00
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>
This commit is contained in:
14
programmer.h
14
programmer.h
@ -556,23 +556,23 @@ extern const int spi_programmer_count;
|
||||
#define MAX_DATA_WRITE_UNLIMITED 256
|
||||
struct spi_programmer {
|
||||
enum spi_controller type;
|
||||
unsigned int max_data_read;
|
||||
unsigned int max_data_write;
|
||||
int max_data_read;
|
||||
int max_data_write;
|
||||
int (*command)(unsigned int writecnt, unsigned int readcnt,
|
||||
const unsigned char *writearr, unsigned char *readarr);
|
||||
int (*multicommand)(struct spi_command *cmds);
|
||||
|
||||
/* Optimized functions for this programmer */
|
||||
int (*read)(struct flashchip *flash, uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int (*write_256)(struct flashchip *flash, uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int (*read)(struct flashchip *flash, uint8_t *buf, int start, int len);
|
||||
int (*write_256)(struct flashchip *flash, uint8_t *buf, int start, int len);
|
||||
};
|
||||
|
||||
extern const struct spi_programmer *spi_programmer;
|
||||
int default_spi_send_command(unsigned int writecnt, unsigned int readcnt,
|
||||
const unsigned char *writearr, unsigned char *readarr);
|
||||
int default_spi_send_multicommand(struct spi_command *cmds);
|
||||
int default_spi_read(struct flashchip *flash, uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int default_spi_write_256(struct flashchip *flash, uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int default_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len);
|
||||
int default_spi_write_256(struct flashchip *flash, uint8_t *buf, int start, int len);
|
||||
void register_spi_programmer(const struct spi_programmer *programmer);
|
||||
|
||||
/* ichspi.c */
|
||||
@ -610,7 +610,7 @@ void serprog_chip_readn(uint8_t *buf, const chipaddr addr, size_t len);
|
||||
void serprog_delay(int delay);
|
||||
int serprog_spi_send_command(unsigned int writecnt, unsigned int readcnt,
|
||||
const unsigned char *writearr, unsigned char *readarr);
|
||||
int serprog_spi_read(struct flashchip *flash, uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int serprog_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len);
|
||||
#endif
|
||||
|
||||
/* serial.c */
|
||||
|
Reference in New Issue
Block a user