Commit a87076d3 authored by XueBing Chen's avatar XueBing Chen Committed by Alex Deucher

drm/radeon/evergreen_cs: Clean up errors in evergreen_cs.c

Fix the following errors reported by checkpatch:

ERROR: space required after that ',' (ctx:VxV)
ERROR: spaces required around that '>' (ctx:VxV)
ERROR: spaces required around that '<' (ctx:VxV)
Signed-off-by: default avatarXueBing Chen <chenxb_99091@126.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent ce136e15
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
#include "evergreen_reg_safe.h" #include "evergreen_reg_safe.h"
#include "cayman_reg_safe.h" #include "cayman_reg_safe.h"
#define MAX(a,b) (((a)>(b))?(a):(b)) #define MAX(a, b) (((a) > (b)) ? (a) : (b))
#define MIN(a,b) (((a)<(b))?(a):(b)) #define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define REG_SAFE_BM_SIZE ARRAY_SIZE(evergreen_reg_safe_bm) #define REG_SAFE_BM_SIZE ARRAY_SIZE(evergreen_reg_safe_bm)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment