diff options
author | Afzal Mohammed <afzal@ti.com> | 2012-08-19 08:59:45 -0400 |
---|---|---|
committer | Afzal Mohammed <afzal@ti.com> | 2012-10-15 05:11:45 -0400 |
commit | 1b47ca1a127925acd73381edb8d1d462014bff1f (patch) | |
tree | 2921dbbb6b58acc0531a4df0948fe21bb21ab128 /arch/arm/mach-omap2/gpmc-onenand.c | |
parent | 757ef79188657087f96f6f12c003b682860fede2 (diff) |
ARM: OMAP2+: gpmc: remove cs# in sync clk div calc
Divider value for a certain sync clk is determined solely
based on gpmc fclk. CS# does not have any role here, thus
remove presence of CS# in clock divider calculation API.
Signed-off-by: Afzal Mohammed <afzal@ti.com>
Reviewed-by: Jon Hunter <jon-hunter@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/gpmc-onenand.c')
-rw-r--r-- | arch/arm/mach-omap2/gpmc-onenand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/gpmc-onenand.c b/arch/arm/mach-omap2/gpmc-onenand.c index 50165aa4205a..06fd84657218 100644 --- a/arch/arm/mach-omap2/gpmc-onenand.c +++ b/arch/arm/mach-omap2/gpmc-onenand.c | |||
@@ -231,7 +231,7 @@ omap2_onenand_calc_sync_timings(struct omap_onenand_platform_data *cfg, | |||
231 | break; | 231 | break; |
232 | } | 232 | } |
233 | 233 | ||
234 | div = gpmc_cs_calc_divider(cs, min_gpmc_clk_period); | 234 | div = gpmc_calc_divider(min_gpmc_clk_period); |
235 | gpmc_clk_ns = gpmc_ticks_to_ns(div); | 235 | gpmc_clk_ns = gpmc_ticks_to_ns(div); |
236 | if (gpmc_clk_ns < 15) /* >66Mhz */ | 236 | if (gpmc_clk_ns < 15) /* >66Mhz */ |
237 | onenand_flags |= ONENAND_FLAG_HF; | 237 | onenand_flags |= ONENAND_FLAG_HF; |