On 8/31/2010 2:57 PM, Guruswamy, Senthilvadivu wrote:
-----Original Message-----
From: Cousson, Benoit
Sent: Friday, August 27, 2010 7:25 PM
To: Guruswamy, Senthilvadivu
Cc: linux-omap@vger.kernel.org; tomi.valkei...@nokia.com;
p...@pwsan.com; Hilman, Kevin
Subject: Re: [PATCH 10/20] Move rfbi init to rfbi probe
On 8/23/2010 5:57 PM, Guruswamy, Senthilvadivu wrote:
From: Senthilvadivu Guruswamy<svad...@ti.com>
[...]
@@ -199,12 +199,6 @@ static int omap_dss_probe(struct
platform_device *pdev)
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;
- }
-
r = dpi_init(pdev);
if (r) {
DSSERR("Failed to initialize dpi\n");
@@ -278,8 +272,6 @@ err_venc:
err_dispc:
dpi_exit();
err_dpi:
- rfbi_exit();
-err_rfbi:
dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK1 | DSS_CLK_54M);
return r;
@@ -296,7 +288,6 @@ static int omap_dss_remove(struct
platform_device *pdev)
venc_exit();
dispc_exit();
dpi_exit();
- rfbi_exit();
if (cpu_is_omap34xx()) {
dsi_exit();
sdi_exit();
@@ -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;
+ 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;
+ }
+err_rfbi:
+ dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK1 | DSS_CLK_54M);
+ return r;
There is probably something wrong in this sequence? The same thing is
done whatever the return state (except the error log).
You should probably return 0 and not disable the clocks if
the rfbi_init
is successful.
[Senthil] I don't see any wrong in functionality, but creates confusion.
Let me init r =0. dss_clk_disable has to be called at the end of probe
irrespective of error. I can remove err_rfbi: since no specific error handling
is getting done now.
It is indeed very confusing, so in that case you can just remove the label.
You don't have to initialize r to zero, since you are always calling
rfbi_init that will initialize it.
Benoit
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html