diff options
author | XueBing Chen <chenxb_99091@126.com> | 2024-01-11 10:34:50 +0100 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-01-18 21:40:22 +0100 |
commit | 17c31edfa2e460443bed94ce8c42ce34ed2d7b27 (patch) | |
tree | 71e438754396185c974f4bbe11459a0235b017f9 /drivers/gpu/drm/radeon | |
parent | drm/radeon: Clean up errors in ci_dpm.h (diff) | |
download | linux-17c31edfa2e460443bed94ce8c42ce34ed2d7b27.tar.xz linux-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>
Diffstat (limited to 'drivers/gpu/drm/radeon')
-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; |