The patch titled ps3: fix no storage devices found has been added to the -mm tree. Its filename is ps3-fix-no-storage-devices-found.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ps3: fix no storage devices found From: Geert Uytterhoeven <Geert.Uytterhoeven@xxxxxxxxxxx> Fix probing of PS3 storage devices: in the success case, we should set `error' to zero, not `result'. Without this patch no storage devices are found. Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@xxxxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Acked-by: Geoff Levand <geoffrey.levand@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/powerpc/platforms/ps3/device-init.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/powerpc/platforms/ps3/device-init.c~ps3-fix-no-storage-devices-found arch/powerpc/platforms/ps3/device-init.c --- a/arch/powerpc/platforms/ps3/device-init.c~ps3-fix-no-storage-devices-found +++ a/arch/powerpc/platforms/ps3/device-init.c @@ -372,7 +372,7 @@ static int ps3_storage_wait_for_device(c notify_event->dev_type == repo->dev_type) { pr_debug("%s:%u: device ready: dev_id %u\n", __func__, __LINE__, repo->dev_id); - result = 0; + error = 0; break; } _ Patches currently in -mm which might be from Geert.Uytterhoeven@xxxxxxxxxxx are ps3-fix-no-storage-devices-found.patch fbdev-fb_create_modedb-non-static-int-first-=-1.patch fbdev-fb_create_modedb-non-static-int-first-=-1-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html