OMAPDSS: fix dispc register dump for preload & mflag
Preload register is dumped twice for video overlays and mflag register is not dumped for GFX. Fix the register dump. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
26450d452b
commit
aba837a280
|
@ -3290,8 +3290,11 @@ static void dispc_dump_regs(struct seq_file *s)
|
|||
DUMPREG(i, DISPC_OVL_FIFO_SIZE_STATUS);
|
||||
DUMPREG(i, DISPC_OVL_ROW_INC);
|
||||
DUMPREG(i, DISPC_OVL_PIXEL_INC);
|
||||
|
||||
if (dss_has_feature(FEAT_PRELOAD))
|
||||
DUMPREG(i, DISPC_OVL_PRELOAD);
|
||||
if (dss_has_feature(FEAT_MFLAG))
|
||||
DUMPREG(i, DISPC_OVL_MFLAG_THRESHOLD);
|
||||
|
||||
if (i == OMAP_DSS_GFX) {
|
||||
DUMPREG(i, DISPC_OVL_WINDOW_SKIP);
|
||||
|
@ -3312,10 +3315,6 @@ static void dispc_dump_regs(struct seq_file *s)
|
|||
}
|
||||
if (dss_has_feature(FEAT_ATTR2))
|
||||
DUMPREG(i, DISPC_OVL_ATTRIBUTES2);
|
||||
if (dss_has_feature(FEAT_PRELOAD))
|
||||
DUMPREG(i, DISPC_OVL_PRELOAD);
|
||||
if (dss_has_feature(FEAT_MFLAG))
|
||||
DUMPREG(i, DISPC_OVL_MFLAG_THRESHOLD);
|
||||
}
|
||||
|
||||
#undef DISPC_REG
|
||||
|
|
Loading…
Reference in New Issue