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

drm/amdgpu: Clean up errors in atom-bits.h

Fix the following errors reported by checkpatch:

ERROR: space prohibited before that ',' (ctx:WxV)

Signed-off-by: chenxuebing <chenxb_99091@126.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

chenxuebing and committed by
Alex Deucher
522f878a 142e2227

+1 -1
+1 -1
drivers/gpu/drm/amd/include/atom-bits.h
··· 33 33 #define CU8(ptr) get_u8(ctx->bios, (ptr)) 34 34 static inline uint16_t get_u16(void *bios, int ptr) 35 35 { 36 - return get_u8(bios ,ptr)|(((uint16_t)get_u8(bios, ptr+1))<<8); 36 + return get_u8(bios, ptr)|(((uint16_t)get_u8(bios, ptr+1))<<8); 37 37 } 38 38 #define U16(ptr) get_u16(ctx->ctx->bios, (ptr)) 39 39 #define CU16(ptr) get_u16(ctx->bios, (ptr))