From: Peter Crosthwaite Date: Tue, 16 Apr 2013 00:34:50 +0000 (+1000) Subject: m25p80: Add debug message for no bdrv X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~900^2~59^2~364 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=095b9c4860b1351e4a0322e43708f39c79c1f34b;p=sdk%2Femulator%2Fqemu.git m25p80: Add debug message for no bdrv If there is no backing bdrv, let the debugging developer know about it. Signed-off-by: Peter Crosthwaite Signed-off-by: Edgar E. Iglesias --- diff --git a/hw/block/m25p80.c b/hw/block/m25p80.c index d853a2e93b..efcc7f4c83 100644 --- a/hw/block/m25p80.c +++ b/hw/block/m25p80.c @@ -606,6 +606,7 @@ static int m25p80_init(SSISlave *ss) return 1; } } else { + DB_PRINT_L(0, "No BDRV - binding to RAM\n"); memset(s->storage, 0xFF, s->size); }