projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5241b6b
)
omap: fix a gpmc nand problem
author
stanley.miao
<stanley.miao@windriver.com>
Tue, 20 Apr 2010 06:33:30 +0000
(06:33 +0000)
committer
Tony Lindgren
<tony@atomide.com>
Fri, 23 Apr 2010 22:35:11 +0000
(15:35 -0700)
If gpmc_t isn't given, we don't need to set timing for gpmc, or it will cause
a Oops.
Signed-off-by: Stanley.Miao <stanley.miao@windriver.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/gpmc-nand.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-omap2/gpmc-nand.c
b/arch/arm/mach-omap2/gpmc-nand.c
index 64d74f05abbe8ff011a2325407d911d2f8607dee..e57fb29ff855b484e5339abfbb563259c7390140 100644
(file)
--- a/
arch/arm/mach-omap2/gpmc-nand.c
+++ b/
arch/arm/mach-omap2/gpmc-nand.c
@@
-39,6
+39,9
@@
static int omap2_nand_gpmc_retime(void)
struct gpmc_timings t;
int err;
+ if (!gpmc_nand_data->gpmc_t)
+ return 0;
+
memset(&t, 0, sizeof(t));
t.sync_clk = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->sync_clk);
t.cs_on = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->cs_on);