X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=target%2Flinux%2Fs3c24xx%2Fpatches-2.6.30%2F052-touchscreen_filter.patch;fp=target%2Flinux%2Fs3c24xx%2Fpatches-2.6.30%2F052-touchscreen_filter.patch;h=0000000000000000000000000000000000000000;hp=1a04bce689fdf9aa315f47c7eea758214382681b;hb=4b42541b43cf471a9f6c254da90f358d6ee0a4b1;hpb=1b474249f3eb643a4a3d734e2c2f5052600ed2e1 diff --git a/target/linux/s3c24xx/patches-2.6.30/052-touchscreen_filter.patch b/target/linux/s3c24xx/patches-2.6.30/052-touchscreen_filter.patch deleted file mode 100644 index 1a04bce689..0000000000 --- a/target/linux/s3c24xx/patches-2.6.30/052-touchscreen_filter.patch +++ /dev/null @@ -1,68 +0,0 @@ ---- a/drivers/input/touchscreen/Kconfig -+++ b/drivers/input/touchscreen/Kconfig -@@ -11,6 +11,54 @@ menuconfig INPUT_TOUCHSCREEN - - if INPUT_TOUCHSCREEN - -+menuconfig TOUCHSCREEN_FILTER -+ boolean "Touchscreen Filtering" -+ depends on INPUT_TOUCHSCREEN -+ select TOUCHSCREEN_FILTER_GROUP -+ select TOUCHSCREEN_FILTER_MEDIAN -+ select TOUCHSCREEN_FILTER_MEAN -+ select TOUCHSCREEN_FILTER_LINEAR -+ help -+ Select this to include kernel touchscreen filter support. The filters -+ can be combined in any order in your machine init and the parameters -+ for them can also be set there. -+ -+if TOUCHSCREEN_FILTER -+ -+config TOUCHSCREEN_FILTER_GROUP -+ bool "Group Touchscreen Filter" -+ depends on INPUT_TOUCHSCREEN && TOUCHSCREEN_FILTER -+ default Y -+ help -+ Say Y here if you want to use the Group touchscreen filter, it -+ avoids using atypical samples. -+ -+config TOUCHSCREEN_FILTER_MEDIAN -+ bool "Median Average Touchscreen Filter" -+ depends on INPUT_TOUCHSCREEN && TOUCHSCREEN_FILTER -+ default Y -+ help -+ Say Y here if you want to use the Median touchscreen filter, it's -+ highly effective if you data is noisy with occasional excursions. -+ -+config TOUCHSCREEN_FILTER_MEAN -+ bool "Mean Average Touchscreen Filter" -+ depends on INPUT_TOUCHSCREEN && TOUCHSCREEN_FILTER -+ default Y -+ help -+ Say Y here if you want to use the Mean touchscreen filter, it -+ can further improve decent quality data by removing jitter -+ -+config TOUCHSCREEN_FILTER_LINEAR -+ bool "Linear Touchscreen Filter" -+ depends on INPUT_TOUCHSCREEN && TOUCHSCREEN_FILTER -+ default Y -+ help -+ Say Y here if you want to use the Linear touchscreen filter, it -+ enables the use of calibration data for the touchscreen. -+ -+endif -+ - config TOUCHSCREEN_ADS7846 - tristate "ADS7846/TSC2046 and ADS7843 based touchscreens" - depends on SPI_MASTER ---- a/drivers/input/touchscreen/Makefile -+++ b/drivers/input/touchscreen/Makefile -@@ -38,3 +38,8 @@ wm97xx-ts-$(CONFIG_TOUCHSCREEN_WM9713) + - obj-$(CONFIG_TOUCHSCREEN_WM97XX_MAINSTONE) += mainstone-wm97xx.o - obj-$(CONFIG_TOUCHSCREEN_WM97XX_ZYLONITE) += zylonite-wm97xx.o - obj-$(CONFIG_TOUCHSCREEN_S3C2410) += s3c2410_ts.o -+obj-$(CONFIG_TOUCHSCREEN_FILTER) += ts_filter_chain.o -+obj-$(CONFIG_TOUCHSCREEN_FILTER_GROUP) += ts_filter_group.o -+obj-$(CONFIG_TOUCHSCREEN_FILTER_LINEAR) += ts_filter_linear.o -+obj-$(CONFIG_TOUCHSCREEN_FILTER_MEDIAN) += ts_filter_median.o -+obj-$(CONFIG_TOUCHSCREEN_FILTER_MEAN) += ts_filter_mean.o