The following warnings fixed.
- WARNING: braces {} are not necessary for any arm of this statement
- WARNING: braces {} are not necessary for single statement blocks

Signed-off-by: YAMANE Toshiaki <[email protected]>
---
 drivers/staging/omapdrm/omap_connector.c |    8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/omapdrm/omap_connector.c 
b/drivers/staging/omapdrm/omap_connector.c
index 38be186..91edb3f 100644
--- a/drivers/staging/omapdrm/omap_connector.c
+++ b/drivers/staging/omapdrm/omap_connector.c
@@ -146,11 +146,10 @@ enum drm_connector_status omap_connector_detect(
        enum drm_connector_status ret;
 
        if (dssdrv->detect) {
-               if (dssdrv->detect(dssdev)) {
+               if (dssdrv->detect(dssdev))
                        ret = connector_status_connected;
-               } else {
+               else
                        ret = connector_status_disconnected;
-               }
        } else {
                ret = connector_status_unknown;
        }
@@ -383,9 +382,8 @@ struct drm_connector *omap_connector_init(struct drm_device 
*dev,
        return connector;
 
 fail:
-       if (connector) {
+       if (connector)
                omap_connector_destroy(connector);
-       }
 
        return NULL;
 }
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to