From: Ran Sun Date: Fri, 21 Jul 2023 06:10:32 +0000 (+0000) Subject: drm/radeon: ERROR: "foo * bar" should be "foo *bar" X-Git-Tag: v6.6-rc1~1^2~20^2~45 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=abbd6cfb1d5a95e8fd07d2fdaa0fe328c2948a52;p=linux-2.6-block.git drm/radeon: ERROR: "foo * bar" should be "foo *bar" Fix two occurrences of the checkpatch.pl error: ERROR: "foo * bar" should be "foo *bar" Signed-off-by: Ran Sun Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/radeon/atom.c b/drivers/gpu/drm/radeon/atom.c index 11a1940bb26d..93acb0e42bd6 100644 --- a/drivers/gpu/drm/radeon/atom.c +++ b/drivers/gpu/drm/radeon/atom.c @@ -68,8 +68,8 @@ typedef struct { } atom_exec_context; int atom_debug = 0; -static int atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t * params); -int atom_execute_table(struct atom_context *ctx, int index, uint32_t * params); +static int atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t *params); +int atom_execute_table(struct atom_context *ctx, int index, uint32_t *params); static uint32_t atom_arg_mask[8] = { 0xFFFFFFFF, 0x0000FFFF, 0x00FFFF00, 0xFFFF0000,