<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head><body style='font-size: 12pt; font-family: Verdana,Geneva,sans-serif'>
<div class="pre" style="margin: 0; padding: 0; font-family: monospace">Add missing spaces and remove spaces to clear checkpatch errors.<br /><br />ERROR: space prohibited before that ',' (ctx:WxV)<br />ERROR: space required after that ',' (ctx:VxV)<br /><br />Signed-off-by: Ran Sun <sunran001@208suo.com><br />---<br /> drivers/gpu/drm/amd/include/atom-bits.h | 2 +-<br /> 1 file changed, 1 insertion(+), 1 deletion(-)<br /><br />diff --git a/drivers/gpu/drm/amd/include/atom-bits.h b/drivers/gpu/drm/amd/include/atom-bits.h<br />index e8fae5c77514..2bfd6d0ff050 100644<br />--- a/drivers/gpu/drm/amd/include/atom-bits.h<br />+++ b/drivers/gpu/drm/amd/include/atom-bits.h<br />@@ -33,7 +33,7 @@ static inline uint8_t get_u8(void *bios, int ptr)<br /> #define CU8(ptr) get_u8(ctx->bios, (ptr))<br /> static inline uint16_t get_u16(void *bios, int ptr)<br /> {<br />- return get_u8(bios ,ptr)|(((uint16_t)get_u8(bios, ptr+1))<<8);<br />+ return get_u8(bios, ptr)|(((uint16_t)get_u8(bios, ptr+1))<<8);<br /> }<br /> #define U16(ptr) get_u16(ctx->ctx->bios, (ptr))<br /> #define CU16(ptr) get_u16(ctx->bios, (ptr))</div>
</body></html>