diff options
author | Tony Lindgren <tony@atomide.com> | 2015-12-03 23:02:32 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2015-12-10 03:53:46 +0300 |
commit | d893656e61040f3ff7b5f72a986052a348f3c94e (patch) | |
tree | 5ef304c0379f2adc3081933177f19c84efacf102 /arch/arm/mach-omap2 | |
parent | 3022b29df67729c42acbd20f6c3e5ba8f8b60741 (diff) | |
download | linux-d893656e61040f3ff7b5f72a986052a348f3c94e.tar.xz |
ARM: OMAP2+: Remove useless check for legacy booting for dm814x
We have never had dm814x booting properly with mainline kernel using
the legacy platform data based booting. Current minimal support is
device tree only.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r-- | arch/arm/mach-omap2/io.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index 3eaeaca5da05..3c87e40650cf 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c @@ -612,8 +612,7 @@ void __init ti814x_init_early(void) ti814x_clockdomains_init(); dm814x_hwmod_init(); omap_hwmod_init_postsetup(); - if (of_have_populated_dt()) - omap_clk_soc_init = dm814x_dt_clk_init; + omap_clk_soc_init = dm814x_dt_clk_init; } void __init ti816x_init_early(void) |