Commit a0caeabb authored by chenxuebing's avatar chenxuebing Committed by Alex Deucher

drm/amdgpu: Clean up errors in cgs_common.h

Fix the following errors reported by checkpatch:

ERROR: open brace '{' following struct go on the same line
ERROR: space required after that ',' (ctx:VxV)
Signed-off-by: default avatarchenxuebing <chenxb_99091@126.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent aca4300a
...@@ -149,27 +149,26 @@ struct cgs_ops { ...@@ -149,27 +149,26 @@ struct cgs_ops {
struct cgs_os_ops; /* To be define in OS-specific CGS header */ struct cgs_os_ops; /* To be define in OS-specific CGS header */
struct cgs_device struct cgs_device {
{
const struct cgs_ops *ops; const struct cgs_ops *ops;
/* to be embedded at the start of driver private structure */ /* to be embedded at the start of driver private structure */
}; };
/* Convenience macros that make CGS indirect function calls look like /* Convenience macros that make CGS indirect function calls look like
* normal function calls */ * normal function calls */
#define CGS_CALL(func,dev,...) \ #define CGS_CALL(func, dev, ...) \
(((struct cgs_device *)dev)->ops->func(dev, ##__VA_ARGS__)) (((struct cgs_device *)dev)->ops->func(dev, ##__VA_ARGS__))
#define CGS_OS_CALL(func,dev,...) \ #define CGS_OS_CALL(func, dev, ...) \
(((struct cgs_device *)dev)->os_ops->func(dev, ##__VA_ARGS__)) (((struct cgs_device *)dev)->os_ops->func(dev, ##__VA_ARGS__))
#define cgs_read_register(dev,offset) \ #define cgs_read_register(dev, offset) \
CGS_CALL(read_register,dev,offset) CGS_CALL(read_register, dev, offset)
#define cgs_write_register(dev,offset,value) \ #define cgs_write_register(dev, offset, value) \
CGS_CALL(write_register,dev,offset,value) CGS_CALL(write_register, dev, offset, value)
#define cgs_read_ind_register(dev,space,index) \ #define cgs_read_ind_register(dev, space, index) \
CGS_CALL(read_ind_register,dev,space,index) CGS_CALL(read_ind_register, dev, space, index)
#define cgs_write_ind_register(dev,space,index,value) \ #define cgs_write_ind_register(dev, space, index, value) \
CGS_CALL(write_ind_register,dev,space,index,value) CGS_CALL(write_ind_register, dev, space, index, value)
#define cgs_get_firmware_info(dev, type, info) \ #define cgs_get_firmware_info(dev, type, info) \
CGS_CALL(get_firmware_info, dev, type, info) CGS_CALL(get_firmware_info, dev, type, info)
......
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