aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/input/touchscreen/s3c2410_ts.c2
-rw-r--r--drivers/input/touchscreen/ts_filter.h2
-rw-r--r--drivers/input/touchscreen/ts_filter_chain.c2
-rw-r--r--drivers/input/touchscreen/ts_filter_chain.h2
-rw-r--r--drivers/input/touchscreen/ts_filter_mean.c2
-rw-r--r--drivers/input/touchscreen/ts_filter_mean.h2
-rw-r--r--drivers/input/touchscreen/ts_filter_median.c2
-rw-r--r--drivers/input/touchscreen/ts_filter_median.h2
8 files changed, 8 insertions, 8 deletions
diff --git a/drivers/input/touchscreen/s3c2410_ts.c b/drivers/input/touchscreen/s3c2410_ts.c
index d78f4662929..bcfdd00fa27 100644
--- a/drivers/input/touchscreen/s3c2410_ts.c
+++ b/drivers/input/touchscreen/s3c2410_ts.c
@@ -37,7 +37,7 @@
* 2007-05-23: Harald Welte <laforge@openmoko.org>
* - Add proper support for S32440
*
- * 2008-06-23: Andy Green <andy@openmoko.com>
+ * 2008-06-23: Andy Green <andy@warmcat.com>
* - Removed averaging system
* - Added generic Touchscreen filter stuff
*
diff --git a/drivers/input/touchscreen/ts_filter.h b/drivers/input/touchscreen/ts_filter.h
index aac1e028d0b..632e5fb3f4e 100644
--- a/drivers/input/touchscreen/ts_filter.h
+++ b/drivers/input/touchscreen/ts_filter.h
@@ -4,7 +4,7 @@
/*
* Touchscreen filter.
*
- * (c) 2008,2009 Andy Green <andy@openmoko.com>
+ * (c) 2008,2009 Andy Green <andy@warmcat.com>
*/
#include <linux/platform_device.h>
diff --git a/drivers/input/touchscreen/ts_filter_chain.c b/drivers/input/touchscreen/ts_filter_chain.c
index a6346bdba3e..17793ace144 100644
--- a/drivers/input/touchscreen/ts_filter_chain.c
+++ b/drivers/input/touchscreen/ts_filter_chain.c
@@ -13,7 +13,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
- * Copyright (c) 2008,2009 Andy Green <andy@openmoko.com>
+ * Copyright (c) 2008,2009 Andy Green <andy@warmcat.com>
*/
#include <linux/kernel.h>
diff --git a/drivers/input/touchscreen/ts_filter_chain.h b/drivers/input/touchscreen/ts_filter_chain.h
index 806bffe6c99..065a6a026d2 100644
--- a/drivers/input/touchscreen/ts_filter_chain.h
+++ b/drivers/input/touchscreen/ts_filter_chain.h
@@ -4,7 +4,7 @@
/*
* Touchscreen filter chains.
*
- * (c) 2008,2009 Andy Green <andy@openmoko.com>
+ * (c) 2008,2009 Andy Green <andy@warmcat.com>
*/
#include "ts_filter.h"
diff --git a/drivers/input/touchscreen/ts_filter_mean.c b/drivers/input/touchscreen/ts_filter_mean.c
index 7621ded3ec8..0c604321713 100644
--- a/drivers/input/touchscreen/ts_filter_mean.c
+++ b/drivers/input/touchscreen/ts_filter_mean.c
@@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Copyright (c) 2008,2009
- * Andy Green <andy@openmoko.com>
+ * Andy Green <andy@warmcat.com>
* Nelson Castillo <arhuaco@freaks-unidos.net>
*
* Simple mean filter.
diff --git a/drivers/input/touchscreen/ts_filter_mean.h b/drivers/input/touchscreen/ts_filter_mean.h
index f5b5e4bbe10..80f9b215dff 100644
--- a/drivers/input/touchscreen/ts_filter_mean.h
+++ b/drivers/input/touchscreen/ts_filter_mean.h
@@ -9,7 +9,7 @@
* mean
*
* (c) 2008,2009
- * Andy Green <andy@openmoko.com>
+ * Andy Green <andy@warmcat.com>
* Nelson Castillo <arhuaco@freaks-unidos.net>
*/
diff --git a/drivers/input/touchscreen/ts_filter_median.c b/drivers/input/touchscreen/ts_filter_median.c
index b8a6206d1b7..6f8aae5941d 100644
--- a/drivers/input/touchscreen/ts_filter_median.c
+++ b/drivers/input/touchscreen/ts_filter_median.c
@@ -13,7 +13,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
- * Copyright (c) 2008 Andy Green <andy@openmoko.com>
+ * Copyright (c) 2008 Andy Green <andy@warmcat.com>
*
*
* Median averaging stuff. We sort incoming raw samples into an array of
diff --git a/drivers/input/touchscreen/ts_filter_median.h b/drivers/input/touchscreen/ts_filter_median.h
index 1c19472e375..b13f361bb6a 100644
--- a/drivers/input/touchscreen/ts_filter_median.h
+++ b/drivers/input/touchscreen/ts_filter_median.h
@@ -8,7 +8,7 @@
*
* median
*
- * (c) 2008 Andy Green <andy@openmoko.com>
+ * (c) 2008 Andy Green <andy@warmcat.com>
*/
struct ts_filter_median_configuration {