Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/radeon: ERROR: "foo * bar" should be "foo *bar"

Fix nine 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>

authored by

Ran Sun and committed by
Alex Deucher
596aed31 1ddcdb7c

+7 -7
+7 -7
drivers/gpu/drm/radeon/atom.c
··· 1156 1156 atom_op_shr, ATOM_ARG_MC}, { 1157 1157 atom_op_debug, 0},}; 1158 1158 1159 - static int atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t * params) 1159 + static int atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t *params) 1160 1160 { 1161 1161 int base = CU16(ctx->cmd_table + 4 + 2 * index); 1162 1162 int len, ws, ps, ptr; ··· 1216 1216 return ret; 1217 1217 } 1218 1218 1219 - int atom_execute_table_scratch_unlocked(struct atom_context *ctx, int index, uint32_t * params) 1219 + int atom_execute_table_scratch_unlocked(struct atom_context *ctx, int index, uint32_t *params) 1220 1220 { 1221 1221 int r; 1222 1222 ··· 1237 1237 return r; 1238 1238 } 1239 1239 1240 - int atom_execute_table(struct atom_context *ctx, int index, uint32_t * params) 1240 + int atom_execute_table(struct atom_context *ctx, int index, uint32_t *params) 1241 1241 { 1242 1242 int r; 1243 1243 mutex_lock(&ctx->scratch_mutex); ··· 1359 1359 } 1360 1360 1361 1361 bool atom_parse_data_header(struct atom_context *ctx, int index, 1362 - uint16_t * size, uint8_t * frev, uint8_t * crev, 1363 - uint16_t * data_start) 1362 + uint16_t *size, uint8_t *frev, uint8_t *crev, 1363 + uint16_t *data_start) 1364 1364 { 1365 1365 int offset = index * 2 + 4; 1366 1366 int idx = CU16(ctx->data_table + offset); ··· 1379 1379 return true; 1380 1380 } 1381 1381 1382 - bool atom_parse_cmd_header(struct atom_context *ctx, int index, uint8_t * frev, 1383 - uint8_t * crev) 1382 + bool atom_parse_cmd_header(struct atom_context *ctx, int index, uint8_t *frev, 1383 + uint8_t *crev) 1384 1384 { 1385 1385 int offset = index * 2 + 4; 1386 1386 int idx = CU16(ctx->cmd_table + offset);