linux/drivers/gpu/drm/amd/display
Harry Wentland 2004f45ef8 drm/amd/display: Use kernel alloc/free
Abstractions are frowned upon.

cocci script:
virtual context
virtual patch
virtual org
virtual report

@@
expression ptr;
@@

- dm_alloc(ptr)
+ kzalloc(ptr, GFP_KERNEL)

@@
expression ptr, size;
@@

- dm_realloc(ptr, size)
+ krealloc(ptr, size, GFP_KERNEL)

@@
expression ptr;
@@

- dm_free(ptr)
+ kfree(ptr)

v2: use GFP_KERNEL, not GFP_ATOMIC. add cocci script

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2017-09-28 16:46:15 -04:00
..
amdgpu_dm drm/amd/display: Use kernel alloc/free 2017-09-28 16:46:15 -04:00
dc drm/amd/display: Use kernel alloc/free 2017-09-28 16:46:15 -04:00
include drm/amd/display: Reduce DC chattiness 2017-09-26 18:17:43 -04:00
modules drm/amd/display: Use kernel alloc/free 2017-09-28 16:46:15 -04:00
Kconfig drm/amd/display: Clean Kconfig formatting 2017-09-26 18:17:41 -04:00
Makefile
TODO drm/amd: DC pull request review 2017-09-28 16:45:04 -04:00