Browse Source

bus: ti-sysc: Fix checking of no-reset-on-init quirk

We are currently only checking for the first entry in the table while
we should check them all. Usual no-idle-on-init is together with
no-reset-on-init, so this has gone unnoticed.

Fixes: 566a9b05e1fa ("bus: ti-sysc: Handle module quirks based dts
configuration")
Signed-off-by: Tony Lindgren <tony@atomide.com>
Tony Lindgren 7 years ago
parent
commit
d39b6ea4f8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/bus/ti-sysc.c

+ 1 - 1
drivers/bus/ti-sysc.c

@@ -630,7 +630,7 @@ static int sysc_init_dts_quirks(struct sysc *ddata)
 	for (i = 0; i < ARRAY_SIZE(sysc_dts_quirks); i++) {
 	for (i = 0; i < ARRAY_SIZE(sysc_dts_quirks); i++) {
 		prop = of_get_property(np, sysc_dts_quirks[i].name, &len);
 		prop = of_get_property(np, sysc_dts_quirks[i].name, &len);
 		if (!prop)
 		if (!prop)
-			break;
+			continue;
 
 
 		ddata->cfg.quirks |= sysc_dts_quirks[i].mask;
 		ddata->cfg.quirks |= sysc_dts_quirks[i].mask;
 	}
 	}