From 65e5c1942a21f16ca054895490d2987b88d55fe9 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 27 Dec 2019 13:03:22 -0500 Subject: 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 Suggested-by: Boris Brezillon --- src/panfrost/include/panfrost-job.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/panfrost/include') 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 */ -- cgit v1.2.3