Guruswamy Senthilvadivu <[email protected]> writes:
> From: Senthilvadivu Guruswamy <[email protected]>
>
> RFBI init and exit moved to rfbi probe and remove.
>
> Signed-off-by: Senthilvadivu Guruswamy <[email protected]>
[...]
> @@ -357,11 +348,21 @@ static int omap_dsi1hw_remove(struct platform_device
> *pdev)
> /* RFBI HW IP initialisation */
> static int omap_rfbihw_probe(struct platform_device *pdev)
> {
> - return 0;
> + int r;
minor: missing blank line
> + dss_clk_enable(DSS_CLK_ICK | DSS_CLK_FCK1 | DSS_CLK_54M);
> + r = rfbi_init();
> + if (r) {
> + DSSERR("Failed to initialize rfbi\n");
> + goto err_rfbi;
> + }
here too
> +err_rfbi:
> + dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK1 | DSS_CLK_54M);
> + return r;
> }
>
> static int omap_rfbihw_remove(struct platform_device *pdev)
> {
> + rfbi_exit();
> return 0;
> }
Kevin
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html