mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 04:36:45 +07:00
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;
|
||||
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user