Skip to content

Commit b4fc7d0

Browse files
Yang Wanggregkh
authored andcommitted
drm/amdgpu: remove redundant semicolons in RAS_EVENT_LOG
commit 332210c upstream. remove redundant semicolons in RAS_EVENT_LOG to avoid code format check warning. Fixes: b712d7c ("drm/amdgpu: fix compiler 'side-effect' check issue for RAS_EVENT_LOG()") Signed-off-by: Yang Wang <kevinyang.wang@amd.com> Reviewed-by: Tao Zhou <tao.zhou1@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 9ce2784 commit b4fc7d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/amd/amdgpu/amdgpu_ras.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ struct amdgpu_iv_entry;
6868
#define AMDGPU_RAS_GET_FEATURES(val) ((val) & ~AMDGPU_RAS_FEATURES_SOCKETID_MASK)
6969

7070
#define RAS_EVENT_LOG(adev, id, fmt, ...) \
71-
amdgpu_ras_event_log_print((adev), (id), (fmt), ##__VA_ARGS__);
71+
amdgpu_ras_event_log_print((adev), (id), (fmt), ##__VA_ARGS__)
7272

7373
enum amdgpu_ras_block {
7474
AMDGPU_RAS_BLOCK__UMC = 0,

0 commit comments

Comments
 (0)