Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc1e1581 authored by YAMANE Toshiaki's avatar YAMANE Toshiaki Committed by Greg Kroah-Hartman
Browse files

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: default avatarYAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7ced63cf
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
}