summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2013-10-02 18:38:38 +0200
committerStefan Agner <stefan.agner@toradex.com>2013-10-02 18:38:38 +0200
commit21b01a4d6e5ef433116fe457a18fd561b7de0a3e (patch)
tree7652753b02d11afdfef49db3edc8a3c1ddc99751 /arch
parent821308d4f18d849f2666c66acd9e7c09dc7d4b19 (diff)
colibri-vf50-ts/mvf-adc: Moved touchscreen support in a module
The touchscreen support backed by hardware on the Colibri VF50 module and the Vybrid ADC is now moved to a own module for better maintainability. The mvf-adc driver exports some of its method now. A good good locking mechanism is still missing.
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-mvf/board-colibri_vf50.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mvf/board-colibri_vf50.c b/arch/arm/mach-mvf/board-colibri_vf50.c
index 0928cd9ce9ab..2eecc72ba2fc 100644
--- a/arch/arm/mach-mvf/board-colibri_vf50.c
+++ b/arch/arm/mach-mvf/board-colibri_vf50.c
@@ -285,7 +285,7 @@ static struct colibri_ts_platform_data colibri_ts_pdata = {
struct platform_device *__init colibri_add_touchdev(
const struct colibri_ts_platform_data *pdata)
{
- return imx_add_platform_device("mvf-adc-ts", 0, NULL, 0,
+ return imx_add_platform_device("colibri-vf50-ts", 0, NULL, 0,
pdata, sizeof(*pdata));
}