Skip to content

Commit

Permalink
m25p80: fix test on blk_pread() return value
Browse files Browse the repository at this point in the history
commit 243e6f6 ("m25p80: Switch to byte-based block access")
replaced blk_read() calls with blk_pread() but return values are
different.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
  • Loading branch information
legoater authored and kevmw committed Jun 16, 2016
1 parent 479b599 commit 9e19036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/block/m25p80.c
Expand Up @@ -900,7 +900,7 @@ static int m25p80_init(SSISlave *ss)
s->storage = blk_blockalign(s->blk, s->size);

/* FIXME: Move to late init */
if (blk_pread(s->blk, 0, s->storage, s->size)) {
if (blk_pread(s->blk, 0, s->storage, s->size) != s->size) {
fprintf(stderr, "Failed to initialize SPI flash!\n");
return 1;
}
Expand Down

0 comments on commit 9e19036

Please sign in to comment.