diff options
author | Tony Lindgren <tony@atomide.com> | 2017-06-01 00:51:37 +0200 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2017-06-08 13:15:10 +0200 |
commit | 1aa8f0cb19e59a0def9925d401d628c1846c3270 (patch) | |
tree | 33bef004aea2ab69cc904f12da6aeef40ca8563d /arch/arm/mach-omap2/omap_device.c | |
parent | ARM: OMAP2+: Remove unused legacy code for PRM (diff) | |
download | linux-1aa8f0cb19e59a0def9925d401d628c1846c3270.tar.xz linux-1aa8f0cb19e59a0def9925d401d628c1846c3270.zip |
ARM: OMAP2+: Remove unused legacy code for interconnects
We are now booting all mach-omap2 in device tree only mode.
Any code that is only called in legacy boot mode where
of_have_populated_dt() is not set is safe to remove now.
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_device.c')
-rw-r--r-- | arch/arm/mach-omap2/omap_device.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c index f989145480c8..ef9ffb8ac912 100644 --- a/arch/arm/mach-omap2/omap_device.c +++ b/arch/arm/mach-omap2/omap_device.c @@ -65,7 +65,7 @@ static void _add_clkdev(struct omap_device *od, const char *clk_alias, r = clk_get_sys(NULL, clk_name); - if (IS_ERR(r) && of_have_populated_dt()) { + if (IS_ERR(r)) { struct of_phandle_args clkspec; clkspec.np = of_find_node_by_name(NULL, clk_name); @@ -953,9 +953,6 @@ static int __init omap_device_late_init(void) { bus_for_each_dev(&platform_bus_type, NULL, NULL, omap_device_late_idle); - WARN(!of_have_populated_dt(), - "legacy booting deprecated, please update to boot with .dts\n"); - return 0; } omap_late_initcall_sync(omap_device_late_init); |