panfrost: Remove redundant NULL check
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Fri, 19 Feb 2021 14:41:15 +0000 (09:41 -0500)
committerMarge Bot <eric+marge@anholt.net>
Mon, 22 Feb 2021 19:17:49 +0000 (19:17 +0000)
Already checked in the callee, no need to check in the caller.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9164>

src/gallium/drivers/panfrost/pan_fragment.c

index 0a6a026..6efcd2b 100644 (file)
@@ -62,12 +62,10 @@ panfrost_fragment_job(struct panfrost_batch *batch, bool has_draws)
 
         struct pipe_framebuffer_state *fb = &batch->key;
 
-        for (unsigned i = 0; i < fb->nr_cbufs; ++i) {
+        for (unsigned i = 0; i < fb->nr_cbufs; ++i)
                 panfrost_initialize_surface(batch, fb->cbufs[i]);
-        }
 
-        if (fb->zsbuf)
-                panfrost_initialize_surface(batch, fb->zsbuf);
+        panfrost_initialize_surface(batch, fb->zsbuf);
 
         /* The passed tile coords can be out of range in some cases, so we need
          * to clamp them to the framebuffer size to avoid a TILE_RANGE_FAULT.