diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2007-10-15 21:44:47 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-10-15 21:44:47 +0000 |
commit | a28edc524b7ab4a64d8c82dcb34b7932c5544b39 (patch) | |
tree | 61fb91797515b96ea120c6d0e80e79daea9ed0f1 /util/flashrom/flash.h | |
parent | a3e03872f35888d99eca28b48e0d423bf8482f7f (diff) |
Move SPI code out of board_enable.c where it started its life. The SPI
chip finding and SPI chip accessor code is moved as well. This can be
split later if we feel like it.
The non-use of svn cp is intentional because the only history we'd have
to preserve are a few commits which were early prototypes of chip
identification code. For those who intend to look at that history, they
can look at board_enable.c revision 2853.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2857 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/flash.h')
-rw-r--r-- | util/flashrom/flash.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/flashrom/flash.h b/util/flashrom/flash.h index 46f8ad3bd1..6029828773 100644 --- a/util/flashrom/flash.h +++ b/util/flashrom/flash.h @@ -207,7 +207,9 @@ int handle_romentries(uint8_t *buffer, uint8_t *content); int linuxbios_init(void); extern char *lb_part, *lb_vendor; +/* spi.c */ int probe_spi(struct flashchip *flash); +int it87xx_probe_serial_flash(const char *name); /* 82802ab.c */ int probe_82802ab(struct flashchip *flash); |