Skip to content

Commit 77cad9d

Browse files
committed
ARM: OMAP2+: Fix legacy mode dss_reset
We must check for "dss_core" instead of "dss" to avoid also matching also "dss_dispc". This only matters for the mixed case of data configured in device tree but with legacy booting ti,hwmods property still enabled. Fixes: 8b30919 ("ARM: OMAP2+: Handle reset quirks for dynamically allocated modules") Cc: Laurent Pinchart <[email protected]> Cc: Tomi Valkeinen <[email protected]> Signed-off-by: Tony Lindgren <[email protected]>
1 parent 085bc0e commit 77cad9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/mach-omap2/omap_hwmod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3489,7 +3489,7 @@ static const struct omap_hwmod_reset dra7_reset_quirks[] = {
34893489
};
34903490

34913491
static const struct omap_hwmod_reset omap_reset_quirks[] = {
3492-
{ .match = "dss", .len = 3, .reset = omap_dss_reset, },
3492+
{ .match = "dss_core", .len = 8, .reset = omap_dss_reset, },
34933493
{ .match = "hdq1w", .len = 5, .reset = omap_hdq1w_reset, },
34943494
{ .match = "i2c", .len = 3, .reset = omap_i2c_reset, },
34953495
{ .match = "wd_timer", .len = 8, .reset = omap2_wd_timer_reset, },

0 commit comments

Comments
 (0)