From 9a9b9842deef5e3354f321c7a8b3386399d9bb54 Mon Sep 17 00:00:00 2001 From: Michael Karcher Date: Sat, 24 Jul 2010 22:07:52 +0000 Subject: Fix compilation for CONFIG_INTERNAL=no Broken by r1098 Corresponding to flashrom svn r1104. Signed-off-by: Michael Karcher Acked-by: Carl-Daniel Hailfinger --- flash.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flash.h b/flash.h index 1827115..8a16396 100644 --- a/flash.h +++ b/flash.h @@ -697,6 +697,7 @@ int default_spi_send_multicommand(struct spi_command *cmds); uint32_t spi_get_valid_read_addr(void); /* ichspi.c */ +#if CONFIG_INTERNAL == 1 extern uint32_t ichspi_bbar; int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb, int ich_generation); @@ -706,6 +707,7 @@ int ich_spi_send_command(unsigned int writecnt, unsigned int readcnt, int ich_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len); int ich_spi_write_256(struct flashchip *flash, uint8_t * buf, int start, int len); int ich_spi_send_multicommand(struct spi_command *cmds); +#endif /* it87spi.c */ void enter_conf_mode_ite(uint16_t port); @@ -719,17 +721,21 @@ int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf, int start, int len); /* sb600spi.c */ +#if CONFIG_INTERNAL == 1 int sb600_probe_spi(struct pci_dev *dev); int sb600_spi_send_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr); int sb600_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len); int sb600_spi_write_256(struct flashchip *flash, uint8_t *buf, int start, int len); +#endif /* wbsio_spi.c */ +#if CONFIG_INTERNAL == 1 int wbsio_check_for_spi(void); int wbsio_spi_send_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr); int wbsio_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len); +#endif /* serprog.c */ int serprog_init(void); -- cgit v1.1