mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
staging/omapdrm: Fix spacing coding style in omap_encoder.c
The following warnings fixed. - 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
bc1e158176
commit
582bc28c2d
@ -72,9 +72,9 @@ static void omap_encoder_mode_set(struct drm_encoder *encoder,
|
||||
|
||||
for (i = 0; i < priv->num_connectors; i++) {
|
||||
struct drm_connector *connector = priv->connectors[i];
|
||||
if (connector->encoder == encoder) {
|
||||
if (connector->encoder == encoder)
|
||||
omap_connector_mode_set(connector, mode);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -163,9 +163,8 @@ struct drm_encoder *omap_encoder_init(struct drm_device *dev,
|
||||
return encoder;
|
||||
|
||||
fail:
|
||||
if (encoder) {
|
||||
if (encoder)
|
||||
omap_encoder_destroy(encoder);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user