summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2015-01-21 14:07:19 +0000
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-01-27 09:51:08 +0100
commitd9806c9fd31920a13f4c5b4d4352ffe286d8787c (patch)
tree9146cb4437bb8bbbf0b08c57500094f01f753857
parent1b842c89bd8eb0e9619e1aba071c9a5529b7a179 (diff)
downloadop-kernel-dev-d9806c9fd31920a13f4c5b4d4352ffe286d8787c.zip
op-kernel-dev-d9806c9fd31920a13f4c5b4d4352ffe286d8787c.tar.gz
drm/i915: Use sizeof(*fb) not sizeof(struct ...) in get_initial_plane_config()
Suggested-by: Ville Syrjälä <ville.syrjala@linux.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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 01dc80b..73b5923 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -6586,7 +6586,7 @@ i9xx_get_initial_plane_config(struct intel_crtc *crtc,
struct drm_framebuffer *fb;
struct intel_framebuffer *intel_fb;
- intel_fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
+ intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
if (!intel_fb) {
DRM_DEBUG_KMS("failed to alloc fb\n");
return;
@@ -7618,7 +7618,7 @@ skylake_get_initial_plane_config(struct intel_crtc *crtc,
struct drm_framebuffer *fb;
struct intel_framebuffer *intel_fb;
- intel_fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
+ intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
if (!intel_fb) {
DRM_DEBUG_KMS("failed to alloc fb\n");
return;
@@ -7714,7 +7714,7 @@ ironlake_get_initial_plane_config(struct intel_crtc *crtc,
struct drm_framebuffer *fb;
struct intel_framebuffer *intel_fb;
- intel_fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
+ intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
if (!intel_fb) {
DRM_DEBUG_KMS("failed to alloc fb\n");
return;
OpenPOWER on IntegriCloud