Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 00e7c259 authored by Geoff Levand's avatar Geoff Levand Committed by Michael Ellerman
Browse files

block/ps3vram: Check return of ps3vram_cache_init



Cc: Markus Elfring <elfring@users.sourceforge.net>
Cc: Jim Paris <jim@jtan.com>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: default avatarGeoff Levand <geoff@infradead.org>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent fd1335e0
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -741,7 +741,11 @@ static int ps3vram_probe(struct ps3_system_bus_device *dev)
		goto out_unmap_reports;
	}

	ps3vram_cache_init(dev);
	error = ps3vram_cache_init(dev);
	if (error < 0) {
		goto out_unmap_reports;
	}

	ps3vram_proc_init(dev);

	queue = blk_alloc_queue(GFP_KERNEL);