diff options
12 files changed, 12 insertions, 12 deletions
diff --git a/drivers/input/touchscreen/s3c2410_ts.c b/drivers/input/touchscreen/s3c2410_ts.c index caccc83cd12..db083a16284 100644 --- a/drivers/input/touchscreen/s3c2410_ts.c +++ b/drivers/input/touchscreen/s3c2410_ts.c @@ -72,7 +72,7 @@ #include <plat/regs-adc.h> #include <plat/adc.h> -#include "ts_filter_chain.h" +#include <linux/input/touchscreen/ts_filter_chain.h> /* For ts.dev.id.version */ #define S3C2410TSVERSION 0x0101 diff --git a/drivers/input/touchscreen/ts_filter_chain.c b/drivers/input/touchscreen/ts_filter_chain.c index 17793ace144..054ffc16d35 100644 --- a/drivers/input/touchscreen/ts_filter_chain.c +++ b/drivers/input/touchscreen/ts_filter_chain.c @@ -19,8 +19,8 @@ #include <linux/kernel.h> #include <linux/device.h> -#include "ts_filter_chain.h" -#include "ts_filter.h" +#include <linux/input/trouchscreen/ts_filter_chain.h> +#include <linux/input/trouchscreen/ts_filter.h> /* * Tux, would you like the following function in /lib? diff --git a/drivers/input/touchscreen/ts_filter_group.c b/drivers/input/touchscreen/ts_filter_group.c index 722e8dfbdae..9e344c5f19f 100644 --- a/drivers/input/touchscreen/ts_filter_group.c +++ b/drivers/input/touchscreen/ts_filter_group.c @@ -45,7 +45,7 @@ #include <linux/kernel.h> #include <linux/slab.h> -#include "ts_filter_group.h" +#include <linux/input/touchscreen/ts_filter_group.h> struct coord_range { int min; /* Minimum value of the range. */ diff --git a/drivers/input/touchscreen/ts_filter_linear.c b/drivers/input/touchscreen/ts_filter_linear.c index 7718bbc6e6d..8b496591eec 100644 --- a/drivers/input/touchscreen/ts_filter_linear.c +++ b/drivers/input/touchscreen/ts_filter_linear.c @@ -28,7 +28,7 @@ #include <linux/slab.h> #include <linux/string.h> -#include "ts_filter_linear.h" +#include <linux/input/touchscreen/ts_filter_linear.h> struct ts_filter_linear; diff --git a/drivers/input/touchscreen/ts_filter_mean.c b/drivers/input/touchscreen/ts_filter_mean.c index 0c604321713..ad4e9c1207c 100644 --- a/drivers/input/touchscreen/ts_filter_mean.c +++ b/drivers/input/touchscreen/ts_filter_mean.c @@ -25,7 +25,7 @@ #include <linux/kernel.h> #include <linux/slab.h> -#include "ts_filter_mean.h" +#include <linux/input/touchscreen/ts_filter_mean.h> struct ts_filter_mean { /* Copy of the private filter configuration. */ diff --git a/drivers/input/touchscreen/ts_filter_median.c b/drivers/input/touchscreen/ts_filter_median.c index 6f8aae5941d..c608f7a9794 100644 --- a/drivers/input/touchscreen/ts_filter_median.c +++ b/drivers/input/touchscreen/ts_filter_median.c @@ -32,7 +32,7 @@ #include <linux/errno.h> #include <linux/kernel.h> #include <linux/slab.h> -#include "ts_filter_median.h" +#include <linux/input/touchscreen/ts_filter_median.h> struct ts_filter_median { /* Private configuration. */ diff --git a/drivers/input/touchscreen/ts_filter.h b/include/linux/input/touchscreen/ts_filter.h index 632e5fb3f4e..632e5fb3f4e 100644 --- a/drivers/input/touchscreen/ts_filter.h +++ b/include/linux/input/touchscreen/ts_filter.h diff --git a/drivers/input/touchscreen/ts_filter_chain.h b/include/linux/input/touchscreen/ts_filter_chain.h index 065a6a026d2..a021ba25bd4 100644 --- a/drivers/input/touchscreen/ts_filter_chain.h +++ b/include/linux/input/touchscreen/ts_filter_chain.h @@ -7,7 +7,7 @@ * (c) 2008,2009 Andy Green <andy@warmcat.com> */ -#include "ts_filter.h" +#include <linux/input/touchscreen/ts_filter.h> #include <linux/err.h> diff --git a/drivers/input/touchscreen/ts_filter_group.h b/include/linux/input/touchscreen/ts_filter_group.h index d1e3590e936..2d727f30086 100644 --- a/drivers/input/touchscreen/ts_filter_group.h +++ b/include/linux/input/touchscreen/ts_filter_group.h @@ -1,7 +1,7 @@ #ifndef __TS_FILTER_GROUP_H__ #define __TS_FILTER_GROUP_H__ -#include "ts_filter.h" +#include <linux/input/touchscreen/ts_filter.h> /* * Touchscreen group filter. diff --git a/drivers/input/touchscreen/ts_filter_linear.h b/include/linux/input/touchscreen/ts_filter_linear.h index 82df3d25b50..6f5e8307456 100644 --- a/drivers/input/touchscreen/ts_filter_linear.h +++ b/include/linux/input/touchscreen/ts_filter_linear.h @@ -1,7 +1,7 @@ #ifndef __TS_FILTER_LINEAR_H__ #define __TS_FILTER_LINEAR_H__ -#include "ts_filter.h" +#include <linux/input/touchscreen/ts_filter.h> #include <linux/kobject.h> /* diff --git a/drivers/input/touchscreen/ts_filter_mean.h b/include/linux/input/touchscreen/ts_filter_mean.h index 80f9b215dff..d4870413987 100644 --- a/drivers/input/touchscreen/ts_filter_mean.h +++ b/include/linux/input/touchscreen/ts_filter_mean.h @@ -1,7 +1,7 @@ #ifndef __TS_FILTER_MEAN_H__ #define __TS_FILTER_MEAN_H__ -#include "ts_filter.h" +#include <linux/input/touchscreen/ts_filter.h> /* * Touchscreen filter. diff --git a/drivers/input/touchscreen/ts_filter_median.h b/include/linux/input/touchscreen/ts_filter_median.h index b13f361bb6a..08051619531 100644 --- a/drivers/input/touchscreen/ts_filter_median.h +++ b/include/linux/input/touchscreen/ts_filter_median.h @@ -1,7 +1,7 @@ #ifndef __TS_FILTER_MEDIAN_H__ #define __TS_FILTER_MEDIAN_H__ -#include "ts_filter.h" +#include <linux/input/touchscreen/ts_filter.h> /* * Touchscreen filter. |