Commit e212abd4 authored by Tony Lindgren's avatar Tony Lindgren
Browse files

bus: ti-sysc: Fix using configured sysc mask value



We have cases where there are no softreset bits like with am335x lcdc.
In that case ti,sysc-mask = <0> needs to be handled properly.

Tested-by: default avatarKeerthy <j-keerthy@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 6ee8241d
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -1692,10 +1692,7 @@ static int sysc_init_sysc_mask(struct sysc *ddata)
	if (error)
	if (error)
		return 0;
		return 0;


	if (val)
	ddata->cfg.sysc_val = val & ddata->cap->sysc_mask;
	ddata->cfg.sysc_val = val & ddata->cap->sysc_mask;
	else
		ddata->cfg.sysc_val = ddata->cap->sysc_mask;


	return 0;
	return 0;
}
}