aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-08-13 13:08:52 -0700
committerAlyssa Rosenzweig <[email protected]>2019-08-14 14:58:34 -0700
commit3e6f2e7aba13ad3fcc652df6fb3f3b4919f803d5 (patch)
treef770cfdb571a587ed2a1ba1b7dffc42f16ec3840 /src/gallium/drivers
parentaafc95ceb6e9ebd62d456b95383ce7f05be0afd9 (diff)
panfrost: Remove panfrost_add_dependency asserts
It doesn't... make a ton of sense to need to assert and this routine is hotter than you might expect. Doesn't matter for release builds, of course. Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/panfrost/pan_scoreboard.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/panfrost/pan_scoreboard.c b/src/gallium/drivers/panfrost/pan_scoreboard.c
index bae9dfb3c25..692f5425444 100644
--- a/src/gallium/drivers/panfrost/pan_scoreboard.c
+++ b/src/gallium/drivers/panfrost/pan_scoreboard.c
@@ -143,10 +143,6 @@ panfrost_add_dependency(
struct mali_job_descriptor_header *second =
job_descriptor_header(depender);
- /* Ensure we're ready for dependencies */
- assert(second->job_index);
- assert(first->job_index);
-
/* Look for an open slot */
if (!second->job_dependency_index_1)