projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52d9014
)
ARM: 6230/1: fix nuc900 touchscreen clk definition bug
author
wanzongshun
<
[email protected]
>
Sun, 18 Jul 2010 14:10:07 +0000
(15:10 +0100)
committer
Russell King
<
[email protected]
>
Thu, 22 Jul 2010 08:18:52 +0000
(09:18 +0100)
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 <
[email protected]
>
Signed-off-by: Russell King <
[email protected]
>
arch/arm/mach-w90x900/cpu.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-w90x900/cpu.c
b/arch/arm/mach-w90x900/cpu.c
index 642207e18198db20777ef475a27ada0bd2ae0c3d..83c56324a472f16a5f155df056b4cc29ba9e562d 100644
(file)
--- 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"),