zink: simplify sampler bufferview change for non-db path

all bufferviews are deduplicated now, so this deref is unnecessary

Fixes: ef3f7989574 ("zink: prune zink_surface down to the imageview and create/fetch on demand")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36269>
diff --git a/src/gallium/drivers/zink/zink_context.c b/src/gallium/drivers/zink/zink_context.c
index 5c253a6..eb9042b 100644
--- a/src/gallium/drivers/zink/zink_context.c
+++ b/src/gallium/drivers/zink/zink_context.c
@@ -2252,7 +2252,7 @@
                   b->buffer_view = get_buffer_view(ctx, res, b->base.format, b->base.u.buf.offset, b->base.u.buf.size);
                   b->rebind_count = res->rebind_count;
                   update = true;
-               } else if (!a || a->buffer_view->buffer_view != b->buffer_view->buffer_view)
+               } else if (!a || a->buffer_view != b->buffer_view)
                      update = true;
                zink_screen(ctx->base.screen)->buffer_barrier(ctx, res, VK_ACCESS_SHADER_READ_BIT,
                                           res->gfx_barrier);