mirror of https://gitee.com/openkylin/linux.git
staging/omapdrm: Fix spacing coding style in omap_connector.c
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 <yamanetoshi@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c6c2f47f30
commit
fdbf20b3b0
|
@ -146,11 +146,10 @@ enum drm_connector_status omap_connector_detect(
|
||||||
enum drm_connector_status ret;
|
enum drm_connector_status ret;
|
||||||
|
|
||||||
if (dssdrv->detect) {
|
if (dssdrv->detect) {
|
||||||
if (dssdrv->detect(dssdev)) {
|
if (dssdrv->detect(dssdev))
|
||||||
ret = connector_status_connected;
|
ret = connector_status_connected;
|
||||||
} else {
|
else
|
||||||
ret = connector_status_disconnected;
|
ret = connector_status_disconnected;
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
ret = connector_status_unknown;
|
ret = connector_status_unknown;
|
||||||
}
|
}
|
||||||
|
@ -383,9 +382,8 @@ struct drm_connector *omap_connector_init(struct drm_device *dev,
|
||||||
return connector;
|
return connector;
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
if (connector) {
|
if (connector)
|
||||||
omap_connector_destroy(connector);
|
omap_connector_destroy(connector);
|
||||||
}
|
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue