diff options
author | zhengbin <[email protected]> | 2019-11-28 10:31:37 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2019-12-02 17:55:08 -0500 |
commit | 4c56feac0d47b0cf620a8f2e62c1c9cda8e22e54 (patch) | |
tree | de36e9fede3eb03f85c6007556d84c6ae2241965 | |
parent | c7d5dfa88bc4e5a05d664eff04f6981f9fdf872d (diff) |
drm/amd/display: Remove unneeded semicolon in bios_parser.c
Fixes coccicheck warning:
drivers/gpu/drm/amd/display/dc/bios/bios_parser.c:2192: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_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c b/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c index 27451f2a938b..008d4d11339d 100644 --- a/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c +++ b/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c @@ -2189,7 +2189,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; |