diff options
author | zhengbin <[email protected]> | 2019-11-28 10:31:38 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2019-12-02 17:55:08 -0500 |
commit | c09f5e000d1e96de95da1aae2ce7ba25d3d207a7 (patch) | |
tree | 80f1cbdfd11242b07cdab524fc0658b8fe77edc3 | |
parent | 4c56feac0d47b0cf620a8f2e62c1c9cda8e22e54 (diff) |
drm/amd/display: Remove unneeded semicolon in bios_parser2.c
Fixes coccicheck warning:
drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c:995:2-3: Unneeded semicolon
Reviewed-by: Harry Wentland <[email protected]>
Reported-by: Hulk Robot <[email protected]>
Signed-off-by: zhengbin <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c index eb06ee765c78..4e24717ee87b 100644 --- a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c +++ b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c @@ -992,7 +992,7 @@ static uint32_t get_support_mask_for_device_id(struct device_id device_id) break; default: break; - }; + } /* Unidentified device ID, return empty support mask. */ return 0; |