From 72123a5b0748bdc4936cfe1cd0ab1aab31eb71f7 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sat, 15 Mar 2008 23:41:19 +0000 Subject: Remove nasty warning that happened due to our vendor detection Corresponding to flashrom svn r210 and coreboot v2 svn r3151. mechanism. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer --- flashrom.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/flashrom.c b/flashrom.c index a8ea4a3c..4130d76c 100644 --- a/flashrom.c +++ b/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, -- cgit v1.2.3