diff --git a/.pick_status.json b/.pick_status.json index 0bcfcf046ef..03a176ce0a9 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -706,7 +706,7 @@ "description": "r600/sfn: Use correct setter method.", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "5d10e3ec6066239d732d19f69cd95da447e73e32" }, diff --git a/src/gallium/drivers/r600/sfn/sfn_value_gpr.cpp b/src/gallium/drivers/r600/sfn/sfn_value_gpr.cpp index 35d90a87b22..bc4a0a59e65 100644 --- a/src/gallium/drivers/r600/sfn/sfn_value_gpr.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_value_gpr.cpp @@ -149,7 +149,7 @@ void GPRVector::set_reg_i(int i, PValue reg) void GPRVector::pin_to_channel(int i) { auto& v = static_cast(*m_elms[i]); - v.pin_to_channel(); + v.set_pin_to_channel(); } void GPRVector::do_print(std::ostream& os) const