Commit c4769ac4 authored by GuoHua Chen's avatar GuoHua Chen Committed by Alex Deucher

drm/radeon: Clean up errors in radeon_atpx_handler.c

Fix the following errors reported by checkpatch:

ERROR: open brace '{' following function definitions go on the next line
Signed-off-by: default avatarGuoHua Chen <chenguohua_716@163.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 328f63b1
......@@ -61,19 +61,23 @@ struct atpx_mux {
u16 mux;
} __packed;
bool radeon_has_atpx(void) {
bool radeon_has_atpx(void)
{
return radeon_atpx_priv.atpx_detected;
}
bool radeon_has_atpx_dgpu_power_cntl(void) {
bool radeon_has_atpx_dgpu_power_cntl(void)
{
return radeon_atpx_priv.atpx.functions.power_cntl;
}
bool radeon_is_atpx_hybrid(void) {
bool radeon_is_atpx_hybrid(void)
{
return radeon_atpx_priv.atpx.is_hybrid;
}
bool radeon_atpx_dgpu_req_power_for_displays(void) {
bool radeon_atpx_dgpu_req_power_for_displays(void)
{
return radeon_atpx_priv.atpx.dgpu_req_power_for_displays;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment