search for: pcie_perf_req_peci_gen2

Displaying 2 results from an estimated 2 matches for "pcie_perf_req_peci_gen2".

2019 Feb 15
2
[PATCH] drm: Mark expected switch fall-throughs
...216,12 @@ static void si_request_link_speed_change_before_state_change(struct amdgpu_devic si_pi->force_pcie_gen = AMDGPU_PCIE_GEN2; if (current_link_speed == AMDGPU_PCIE_GEN2) break; + /* fall through */ case AMDGPU_PCIE_GEN2: if (amdgpu_acpi_pcie_performance_request(adev, PCIE_PERF_REQ_PECI_GEN2, false) == 0) break; #endif + /* fall through */ default: si_pi->force_pcie_gen = si_get_current_pcie_speed(adev); break; 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 a1c56f29cfeb..fd5266a58297 10064...
2019 Feb 15
0
[PATCH] drm: Mark expected switch fall-throughs
...GPU_PCIE_GEN2; > if (current_link_speed == AMDGPU_PCIE_GEN2) > break; > + /* fall through */ > case AMDGPU_PCIE_GEN2: > if (amdgpu_acpi_pcie_performance_request(adev, PCIE_PERF_REQ_PECI_GEN2, false) == 0) > break; > #endif > + /* fall through */ > default: > si_pi->force_pcie_gen = si_get_current_pcie_speed(adev); > break; > diff --git a/drivers...