diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-03-17 22:59:40 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-03-17 22:59:40 +0000 |
commit | 012ed48bf2c28af293c1868f8e0d0371e20ed8ec (patch) | |
tree | 0be4e162021cf0a87a5b7a2a489ee6ffada29bf6 /util/flashrom/flashrom.c | |
parent | 2ce4e4caa9c2856c77b666299b9551dfd10a0dab (diff) |
Support for the Winbond W39V080FA series of chips.
Support for flashing on the Kontron 986LCD-M board.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3165 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/flashrom.c')
-rw-r--r-- | util/flashrom/flashrom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/flashrom/flashrom.c b/util/flashrom/flashrom.c index 4130d76c3f..29c3a58798 100644 --- a/util/flashrom/flashrom.c +++ b/util/flashrom/flashrom.c @@ -109,8 +109,8 @@ struct flashchip *probe_flash(struct flashchip *flash) flash++; continue; } - printf_debug("Probing for %s, %d KB\n", - flash->name, flash->total_size); + printf_debug("Probing for %s %s, %d KB: ", + flash->vendor, flash->name, flash->total_size); size = flash->total_size * 1024; |