diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-12-27 13:03:22 -0500 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-12-27 13:03:22 -0500 |
commit | 65e5c1942a21f16ca054895490d2987b88d55fe9 (patch) | |
tree | e1b8460d353fbef5368af5f085ce01d70c856fb0 /src/panfrost/include | |
parent | 95ba661b4988c86447f952b11e262872c3e46a3a (diff) |
panfrost: Remove 32-bit next_job path
It has been unused for a while; let's just remove the abstraction.
Technically the hardware does support 32-bit job descriptors, but we
don't and we can't keep them from breaking so let's not pretend they
work.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Suggested-by: Boris Brezillon <[email protected]>
Diffstat (limited to 'src/panfrost/include')
-rw-r--r-- | src/panfrost/include/panfrost-job.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/panfrost/include/panfrost-job.h b/src/panfrost/include/panfrost-job.h index 385305da5cf..fa43f8c32a4 100644 --- a/src/panfrost/include/panfrost-job.h +++ b/src/panfrost/include/panfrost-job.h @@ -620,11 +620,7 @@ struct mali_job_descriptor_header { u16 job_index; u16 job_dependency_index_1; u16 job_dependency_index_2; - - union { - u64 next_job_64; - u32 next_job_32; - }; + u64 next_job; } __attribute__((packed)); /* These concern exception_status */ |