From: Bernard Zhao Date: Sun, 26 Apr 2020 13:12:44 +0000 (-0700) Subject: drm/radeon: cleanup coding style a bit X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=981d4f7d2c0dc5bc7d42e7f4afee1e6ded5a9cb3;p=linux.git drm/radeon: cleanup coding style a bit Maybe no need to check ws before kmalloc, kmalloc will check itself, kmalloc`s logic is if ptr is NULL, kmalloc will just return Reviewed-by: Christian König Signed-off-by: Bernard Zhao Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/radeon/atom.c b/drivers/gpu/drm/radeon/atom.c index 2c27627b66593..f15b20da5315c 100644 --- a/drivers/gpu/drm/radeon/atom.c +++ b/drivers/gpu/drm/radeon/atom.c @@ -1211,8 +1211,7 @@ static int atom_execute_table_locked(struct atom_context *ctx, int index, uint32 SDEBUG("<<\n"); free: - if (ws) - kfree(ectx.ws); + kfree(ectx.ws); return ret; }