panvk: drop panvk_pool_upload helper

Currently there's no user of it, and practically no one would use
implicit alignment.

Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37861>
This commit is contained in:
Yiwei Zhang
2025-10-13 21:51:38 -07:00
committed by Marge Bot
parent 22ed6c3582
commit 49cdf9f0d5
-6
View File
@@ -213,12 +213,6 @@ panvk_pool_upload_aligned(struct panvk_pool *pool, const void *data, size_t sz,
return mem;
}
static inline struct panvk_priv_mem
panvk_pool_upload(struct panvk_pool *pool, const void *data, size_t sz)
{
return panvk_pool_upload_aligned(pool, data, sz, sz);
}
#define panvk_pool_alloc_desc(pool, name) \
panvk_pool_alloc_mem(pool, panvk_pool_descs_to_alloc_info( \
PAN_DESC_AGGREGATE(PAN_DESC(name))))