The patch titled s3c2410fb: fix incorrect argument type in resume function has been removed from the -mm tree. Its filename was s3c2410fb-fix-incorrect-argument-type-in-resume-function.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: s3c2410fb: fix incorrect argument type in resume function From: Krzysztof Helt <krzysztof.h1@xxxxx> Fix wrong pointer type passed into the s3c2410fb_init_registers() function. Signed-off-by: Krzysztof Helt <krzysztof.h1@xxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/s3c2410fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/s3c2410fb.c~s3c2410fb-fix-incorrect-argument-type-in-resume-function drivers/video/s3c2410fb.c --- a/drivers/video/s3c2410fb.c~s3c2410fb-fix-incorrect-argument-type-in-resume-function +++ a/drivers/video/s3c2410fb.c @@ -1026,7 +1026,7 @@ static int s3c2410fb_resume(struct platf clk_enable(info->clk); msleep(1); - s3c2410fb_init_registers(info); + s3c2410fb_init_registers(fbinfo); return 0; } _ Patches currently in -mm which might be from krzysztof.h1@xxxxx are origin.patch git-alsa.patch git-scsi-misc.patch drivers-video-pm3fbc-section-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