mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 09:30:13 +01:00
v3d/qpu: fix type of function argument
Fixes:05c7d9715b("broadcom: Add V3D 3.3 QPU instruction pack, unpack, and disasm.") Signed-off-by: Eric Engestrom <eric@igalia.com> Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24787> (cherry picked from commit953ac9da79)
This commit is contained in:
parent
c8a08be886
commit
cb95664d18
2 changed files with 3 additions and 3 deletions
|
|
@ -5294,7 +5294,7 @@
|
|||
"description": "v3d/qpu: fix type of function argument",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "05c7d9715b8a419fd6fb952715ee8fde9401aacb",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -718,10 +718,10 @@ v3d_qpu_float16_unpack_pack(enum v3d_qpu_input_unpack unpacked,
|
|||
}
|
||||
|
||||
static bool
|
||||
v3d_qpu_float32_pack_pack(enum v3d_qpu_input_unpack unpacked,
|
||||
v3d_qpu_float32_pack_pack(enum v3d_qpu_output_pack pack,
|
||||
uint32_t *packed)
|
||||
{
|
||||
switch (unpacked) {
|
||||
switch (pack) {
|
||||
case V3D_QPU_PACK_NONE:
|
||||
*packed = 0;
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue