Hi, On Mon, 2010-11-08 at 13:24 +0100, ext Archit Taneja wrote: > From: Sumit Semwal <sumit.semwal@xxxxxx> > > Introduce new enum members for LCD2 Channel and corresponding Overlay Manager. > > Represent some of the DISPC register defines with channel as a parameter > to differentiate between LCD, DIGIT and LCD2 channels. Replace the existing > reads/writes to these registers in this new way. > > Signed-off-by: Sumit Semwal <sumit.semwal@xxxxxx> > Signed-off-by: Mukund Mittal <mmittal@xxxxxx> > Signed-off-by: Samreen <samreen@xxxxxx> <snip> > @@ -1843,9 +1847,9 @@ static void dispc_enable_digit_out(bool enable) > bool dispc_is_channel_enabled(enum omap_channel channel) > { > if (channel == OMAP_DSS_CHANNEL_LCD) > - return !!REG_GET(DISPC_CONTROL, 0, 0); > + return !!REG_GET(DISPC_CONTROL(channel), 0, 0); > else if (channel == OMAP_DSS_CHANNEL_DIGIT) > - return !!REG_GET(DISPC_CONTROL, 1, 1); > + return !!REG_GET(DISPC_CONTROL(channel), 1, 1); > else > BUG(); > } I don't think this is good. Looking at the code here, it looks like we're accessing different DISPC_CONTROL registers for LCD and DIGIT out. But we're not. For some registers it's good to have DISPC_XXX(ch) style, when the registers are accessed identically for different channels. Then you can just modify the same bits in DISPC_REG(ch) register, and you don't have to mind what the channel actually is. But this is not the case in the function above. The DISPC_CONTROL(ch) is defined as: DISPC_REG(ch != 2 ? 0x0040 : 0x0238) I don't think this is actually right. DISPC_CONTROL is not a register defined per channel. The register at 0x40 contains bits for both channels 0 and 1. Perhaps leave DISPC_CONTROL as it was, and add DISPC_CONTROL2, because the registers are not used similarly for all channels. Or you can come up with some other solution, but using channel as argument for the macro doesn't look right. The same comments apply to other functions using DISPC_CONTROL(channel). (And possibly to some other registers which are similar). Tomi -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html