summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2015-05-12 18:13:14 +0300
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-05-20 12:25:52 +0300
commit8cfcba415e8c0b29fc99d2b0316b868a6a88c2c5 (patch)
treea7efc5dba497feef30004eb41a9b5db59b98f441
parentb250a4c43c0c3c3f1831d81e7292468ca02f7a5e (diff)
downloadlinux-8cfcba415e8c0b29fc99d2b0316b868a6a88c2c5.tar.xz
drm/i915/skl: Add a new line before return
We usually use a new line before those kind of return statements. Also the various skl_plane_ctl*() functions weren't consistent. Cc: Chandra Konduru <chandra.konduru@intel.com> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--drivers/gpu/drm/i915/intel_display.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index f533519e0e30..c6419e81832b 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -2999,6 +2999,7 @@ u32 skl_plane_ctl_format(uint32_t pixel_format)
default:
BUG();
}
+
return plane_ctl_format;
}
@@ -3021,6 +3022,7 @@ u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
default:
MISSING_CASE(fb_modifier);
}
+
return plane_ctl_tiling;
}