staging/omapdrm: Fix spacing coding style in omap_fb.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
582bc28c2d
commit
ddcd49ed6e
1 changed files with 5 additions and 6 deletions
|
@ -307,17 +307,16 @@ struct drm_connector *omap_framebuffer_get_next_connector(
|
||||||
struct list_head *connector_list = &dev->mode_config.connector_list;
|
struct list_head *connector_list = &dev->mode_config.connector_list;
|
||||||
struct drm_connector *connector = from;
|
struct drm_connector *connector = from;
|
||||||
|
|
||||||
if (!from) {
|
if (!from)
|
||||||
return list_first_entry(connector_list, typeof(*from), head);
|
return list_first_entry(connector_list, typeof(*from), head);
|
||||||
}
|
|
||||||
|
|
||||||
list_for_each_entry_from(connector, connector_list, head) {
|
list_for_each_entry_from(connector, connector_list, head) {
|
||||||
if (connector != from) {
|
if (connector != from) {
|
||||||
struct drm_encoder *encoder = connector->encoder;
|
struct drm_encoder *encoder = connector->encoder;
|
||||||
struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
|
struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
|
||||||
if (crtc && crtc->fb == fb) {
|
if (crtc && crtc->fb == fb)
|
||||||
return connector;
|
return connector;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -466,8 +465,8 @@ struct drm_framebuffer *omap_framebuffer_init(struct drm_device *dev,
|
||||||
return fb;
|
return fb;
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
if (fb) {
|
if (fb)
|
||||||
omap_framebuffer_destroy(fb);
|
omap_framebuffer_destroy(fb);
|
||||||
}
|
|
||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue