OSDN Git Service

drm/radeon: ERROR: "foo * bar" should be "foo *bar"
authorRan Sun <sunran001@208suo.com>
Fri, 21 Jul 2023 06:10:32 +0000 (06:10 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 25 Jul 2023 17:44:03 +0000 (13:44 -0400)
Fix two occurrences of the checkpatch.pl error:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Ran Sun <sunran001@208suo.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/atom.c

index 11a1940..93acb0e 100644 (file)
@@ -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,