1
0
Fork 0

staging/omapdrm: Fix spacing coding style in omap_crtc.c

The following warning 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>
wifi-calibration
YAMANE Toshiaki 2012-11-14 19:30:23 +09:00 committed by Greg Kroah-Hartman
parent bd690dece9
commit d21a9d3ba5
1 changed files with 2 additions and 2 deletions

View File

@ -263,8 +263,8 @@ struct drm_crtc *omap_crtc_init(struct drm_device *dev,
return crtc;
fail:
if (crtc) {
if (crtc)
omap_crtc_destroy(crtc);
}
return NULL;
}