dect
/
linux-2.6
Archived
13
0
Fork 0

staging/omapdrm: Fix spacing coding style in omap_drv.h

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:
YAMANE Toshiaki 2012-11-14 19:31:09 +09:00 committed by Greg Kroah-Hartman
parent 7ced63cf7e
commit bc1e158176
1 changed files with 4 additions and 4 deletions

View File

@ -218,17 +218,17 @@ static inline int objects_lookup(struct drm_device *dev,
for (i = 0; i < n; i++) {
bos[i] = drm_gem_object_lookup(dev, filp, handles[i]);
if (!bos[i]) {
if (!bos[i])
goto fail;
}
}
return 0;
fail:
while (--i > 0) {
while (--i > 0)
drm_gem_object_unreference_unlocked(bos[i]);
}
return -ENOENT;
}