The patch titled ps3: fix no storage devices found has been removed from the -mm tree. Its filename was ps3-fix-no-storage-devices-found.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 origin.patch git-scsi-misc.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