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

drm/radeon: Clean up errors in ni_dpm.c

Fix the following errors reported by checkpatch:

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

Signed-off-by: GuoHua Chen <chenguohua_716@163.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

GuoHua Chen and committed by
Alex Deucher
007cded6 b8cbb7de

+1 -1
+1 -1
drivers/gpu/drm/radeon/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))