drm/i915: Allocate the pipe_crc->entires with kcalloc()
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Tue, 9 Dec 2014 19:28:31 +0000 (21:28 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 10 Dec 2014 16:47:26 +0000 (17:47 +0100)
pipe_crc->entries[] is an array so allocate with kcalloc() instead of
kzalloc().

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_debugfs.c

index 218e27cb3e2fb2802ff5068fe264ca72b56ef335..95829ebecf21b8067dbbeb3333feac1f618fdead 100644 (file)
@@ -3415,8 +3415,8 @@ static int pipe_crc_set_source(struct drm_device *dev, enum pipe pipe,
                DRM_DEBUG_DRIVER("collecting CRCs for pipe %c, %s\n",
                                 pipe_name(pipe), pipe_crc_source_name(source));
 
-               entries = kzalloc(sizeof(*pipe_crc->entries) *
-                                 INTEL_PIPE_CRC_ENTRIES_NR,
+               entries = kcalloc(INTEL_PIPE_CRC_ENTRIES_NR,
+                                 sizeof(pipe_crc->entries[0]),
                                  GFP_KERNEL);
                if (!entries)
                        return -ENOMEM;
This page took 0.0456 seconds and 5 git commands to generate.