The patch titled drivers/media/video/gspca/cpia1.c: fix error check has been removed from the -mm tree. Its filename was drivers-media-video-gspca-cpia1c-fix-error-check.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: drivers/media/video/gspca/cpia1.c: fix error check From: Nicolas Kaiser <nikai@xxxxxxxxx> It looks to me like it was intended to check the return value at this point. Signed-off-by: Nicolas Kaiser <nikai@xxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Cc: Jean-Francois Moine <moinejf@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/media/video/gspca/cpia1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/media/video/gspca/cpia1.c~drivers-media-video-gspca-cpia1c-fix-error-check drivers/media/video/gspca/cpia1.c --- a/drivers/media/video/gspca/cpia1.c~drivers-media-video-gspca-cpia1c-fix-error-check +++ a/drivers/media/video/gspca/cpia1.c @@ -829,7 +829,7 @@ static int goto_low_power(struct gspca_d if (ret) return ret; - do_command(gspca_dev, CPIA_COMMAND_GetCameraStatus, 0, 0, 0, 0); + ret = do_command(gspca_dev, CPIA_COMMAND_GetCameraStatus, 0, 0, 0, 0); if (ret) return ret; _ Patches currently in -mm which might be from nikai@xxxxxxxxx are linux-next.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