diff options
author | XueBing Chen <chenxb_99091@126.com> | 2024-01-11 09:34:50 +0000 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-01-18 15:40:22 -0500 |
commit | 17c31edfa2e460443bed94ce8c42ce34ed2d7b27 (patch) | |
tree | 71e438754396185c974f4bbe11459a0235b017f9 | |
parent | c435ebd0c66183a779fd76193d9381b70dd34492 (diff) | |
download | linux-stable-17c31edfa2e460443bed94ce8c42ce34ed2d7b27.tar.gz linux-stable-17c31edfa2e460443bed94ce8c42ce34ed2d7b27.tar.bz2 linux-stable-17c31edfa2e460443bed94ce8c42ce34ed2d7b27.zip |
drm/radeon: Clean up errors in radeon.h
Fix the following errors reported by checkpatch:
ERROR: open brace '{' following struct go on the same line
Signed-off-by: XueBing Chen <chenxb_99091@126.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/radeon/radeon.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index 3d3d2109dfeb..3e5ff17e3caf 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h @@ -1355,14 +1355,12 @@ struct radeon_dpm_thermal { bool high_to_low; }; -enum radeon_clk_action -{ +enum radeon_clk_action { RADEON_SCLK_UP = 1, RADEON_SCLK_DOWN }; -struct radeon_blacklist_clocks -{ +struct radeon_blacklist_clocks { u32 sclk; u32 mclk; enum radeon_clk_action action; |