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

Commit c0311757 authored by Zhang Yanfei's avatar Zhang Yanfei Committed by Jiri Kosina
Browse files

driver: gpu: drm: i915: remove cast for kzalloc return value



remove cast for kzalloc return value.

Signed-off-by: default avatarZhang Yanfei <zhangyanfei@cn.fujitsu.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: David Airlie <airlied@linux.ie>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 194c8767
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -451,7 +451,7 @@ static bool intel_sdvo_write_cmd(struct intel_sdvo *intel_sdvo, u8 cmd,
	int i, ret = true;

        /* Would be simpler to allocate both in one go ? */        
	buf = (u8 *)kzalloc(args_len * 2 + 2, GFP_KERNEL);
	buf = kzalloc(args_len * 2 + 2, GFP_KERNEL);
	if (!buf)
		return false;