From 582ce71cc5d3948908ce109ff68a8563b1b2030c Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sat, 15 Mar 2008 23:41:19 +0000 Subject: [PATCH] remove nasty warning that happened due to our vendor detection mechanism. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3151 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/flashrom/flashrom.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/util/flashrom/flashrom.c b/util/flashrom/flashrom.c index a8ea4a3cea..4130d76c3f 100644 --- a/util/flashrom/flashrom.c +++ b/util/flashrom/flashrom.c @@ -129,9 +129,12 @@ struct flashchip *probe_flash(struct flashchip *flash) */ if (getpagesize() > size) { + /* + * if a flash size of 0 is mapped, we map a single page + * so we can probe in that area whether we know the + * vendor at least. + */ size = getpagesize(); - printf("WARNING: size: %d -> %ld (page size)\n", - flash->total_size * 1024, (unsigned long)size); } bios = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED,