The patch titled wm9712: return 0 rather than RC_PENUP on error has been removed from the -mm tree. Its filename was wm9712-return-0-rather-than-rc_penup-on-error.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: wm9712: return 0 rather than RC_PENUP on error From: Mark Brown <broonie@xxxxxxxxxxxxxxxxxxxxxxxxxxx> This prevents spurious pen up events if the ADC failed to obtain a sample. Signed-off-by: Mark Brown <broonie@xxxxxxxxxxxxxxxxxxxxxxxxxxx> Cc: Liam Girdwood <liam.girdwood@xxxxxxxxxxxxxxxx> Cc: Graeme Gregory <gg@xxxxxxxxxxxxxxxxxxxxxxxxxxx> Cc: Mike Arthur <mike.arthur@xxxxxxxxxxxxxxxx> Cc: Dmitry Torokhov <dtor@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/input/touchscreen/wm9712.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/input/touchscreen/wm9712.c~wm9712-return-0-rather-than-rc_penup-on-error drivers/input/touchscreen/wm9712.c --- a/drivers/input/touchscreen/wm9712.c~wm9712-return-0-rather-than-rc_penup-on-error +++ a/drivers/input/touchscreen/wm9712.c @@ -368,7 +368,7 @@ static int wm9712_poll_coord(struct wm97 } return RC_VALID; err: - return RC_PENUP; + return 0; } /* _ Patches currently in -mm which might be from broonie@xxxxxxxxxxxxxxxxxxxxxxxxxxx are git-alsa-tiwai.patch git-arm.patch git-wm97xx.patch touch-screen-driver-for-the-superh-migor-board.patch touch-screen-driver-for-the-superh-migor-board-checkpatch-fixes.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