diff options
author | Tony Lindgren <tony@atomide.com> | 2021-03-12 10:23:48 +0200 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2021-03-12 10:23:48 +0200 |
commit | 4adcf4c28f6dc191187359bfceee5ab5fe91a50e (patch) | |
tree | 3f8917b0c64216ef003da91ce49eaae86843c35b /drivers/bus | |
parent | f21af4257cf3ec82736083dabc5fa230efebf61c (diff) | |
download | linux-stable-4adcf4c28f6dc191187359bfceee5ab5fe91a50e.tar.gz linux-stable-4adcf4c28f6dc191187359bfceee5ab5fe91a50e.tar.bz2 linux-stable-4adcf4c28f6dc191187359bfceee5ab5fe91a50e.zip |
bus: ti-sysc: Warn about old dtb for dra7 and omap4/5
Let's warn if an old incomplete dtb is detected. We now assume the dtb
is complete and does not depend on the legacy platform data.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'drivers/bus')
-rw-r--r-- | drivers/bus/ti-sysc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/bus/ti-sysc.c b/drivers/bus/ti-sysc.c index 65943d1a2557..da568a310052 100644 --- a/drivers/bus/ti-sysc.c +++ b/drivers/bus/ti-sysc.c @@ -2886,6 +2886,9 @@ static int sysc_init_soc(struct sysc *ddata) switch (sysc_soc->soc) { case SOC_AM3: case SOC_AM4: + case SOC_4430 ... SOC_4470: + case SOC_5430: + case SOC_DRA7: np = of_find_node_by_path("/ocp"); WARN_ONCE(np && of_device_is_compatible(np, "simple-bus"), "ti-sysc: Incomplete old dtb, please update\n"); |