i965: simplify intel_image_format_lookup()

Drop the local variable and return directly.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Emil Velikov
2017-07-31 19:45:27 +01:00
committed by Emil Velikov
parent 69fa9e91cb
commit df83213702
+3 -7
View File
@@ -349,16 +349,12 @@ intel_image_warn_if_unaligned(__DRIimage *image, const char *func)
static const struct intel_image_format *
intel_image_format_lookup(int fourcc)
{
const struct intel_image_format *f = NULL;
for (unsigned i = 0; i < ARRAY_SIZE(intel_image_formats); i++) {
if (intel_image_formats[i].fourcc == fourcc) {
f = &intel_image_formats[i];
break;
}
if (intel_image_formats[i].fourcc == fourcc)
return &intel_image_formats[i];
}
return f;
return NULL;
}
static boolean intel_lookup_fourcc(int dri_format, int *fourcc)