]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amdgpu: use "*" adjacent to data name
authorDeepak R Varma <mh12gx2825@gmail.com>
Mon, 2 Nov 2020 19:38:23 +0000 (01:08 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 2 Nov 2020 20:35:53 +0000 (15:35 -0500)
commit1362061867f47eba04cfb24a0e776615018c15fc
tree0aa3ed5ed957075703225a2ec589ae6fd4fabb01
parentca31d7837777995c1894e0d0a7c44f6e6adb0f36
drm/amdgpu: use "*" adjacent to data name

When declaring pointer data, the "*" symbol should be used adjacent to
the data name as per the coding standards. This resolves following
issues reported by checkpatch script:
ERROR: "foo *   bar" should be "foo *bar"
ERROR: "foo * bar" should be "foo *bar"
ERROR: "foo*            bar" should be "foo *bar"
ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: Deepak R Varma <mh12gx2825@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/atom.c
drivers/gpu/drm/amd/amdgpu/atombios_i2c.c
drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
drivers/gpu/drm/amd/amdgpu/mes_v10_1.c
drivers/gpu/drm/amd/amdgpu/psp_v11_0.c