aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-w90x900
diff options
context:
space:
mode:
authorwanzongshun <mcuos.com@gmail.com>2010-07-18 15:10:07 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-07-22 09:18:52 +0100
commita7029c82622f6483a27ebe7ed61b622e1a00664d (patch)
tree207f81398551ef6fc631e3fe4720e8b1158db9fe /arch/arm/mach-w90x900
parent52d90145fb8bb52228bf7273cbccae4530203758 (diff)
downloadkernel_samsung_smdk4412-a7029c82622f6483a27ebe7ed61b622e1a00664d.zip
kernel_samsung_smdk4412-a7029c82622f6483a27ebe7ed61b622e1a00664d.tar.gz
kernel_samsung_smdk4412-a7029c82622f6483a27ebe7ed61b622e1a00664d.tar.bz2
ARM: 6230/1: fix nuc900 touchscreen clk definition bug
This patch is to fix nuc900 touchscreen clk definition bug,the .dev_id's name should be 'nuc900-ts', it should be the same to pdev.name. or else, the touchscreen driver will be not working well due to clock engine disabled. Signed-off-by: Wan ZongShun <mcuos.com@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-w90x900')
-rw-r--r--arch/arm/mach-w90x900/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-w90x900/cpu.c b/arch/arm/mach-w90x900/cpu.c
index 642207e..83c5632 100644
--- a/arch/arm/mach-w90x900/cpu.c
+++ b/arch/arm/mach-w90x900/cpu.c
@@ -93,7 +93,7 @@ static struct clk_lookup nuc900_clkregs[] = {
DEF_CLKLOOK(&clk_kpi, "nuc900-kpi", NULL),
DEF_CLKLOOK(&clk_wdt, "nuc900-wdt", NULL),
DEF_CLKLOOK(&clk_gdma, "nuc900-gdma", NULL),
- DEF_CLKLOOK(&clk_adc, "nuc900-adc", NULL),
+ DEF_CLKLOOK(&clk_adc, "nuc900-ts", NULL),
DEF_CLKLOOK(&clk_usi, "nuc900-spi", NULL),
DEF_CLKLOOK(&clk_ext, NULL, "ext"),
DEF_CLKLOOK(&clk_timer0, NULL, "timer0"),