From 3cd62ed4d82339a89c662295e1b9376b6c60eaf9 Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Sun, 13 Oct 2024 14:53:50 +0200 Subject: [PATCH] panvk: Add missing headers to android platform Fixes: 2de95773b9c ("panvk: Kill panvk_private.h") Reviewed-by: Roman Stratiienko Reviewed-by: Mary Guillemard Part-of: (cherry picked from commit 2c79e012593178075eac31dfa907ea64bf448b1c) --- .pick_status.json | 2 +- src/panfrost/vulkan/panvk_android.c | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index 8b73db6de2e..6d678b4ac12 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -444,7 +444,7 @@ "description": "panvk: Add missing headers to android platform", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "2de95773b9cc366c4d4b1339a993e31f8812b2f2", "notes": null diff --git a/src/panfrost/vulkan/panvk_android.c b/src/panfrost/vulkan/panvk_android.c index 42b1f951a9c..f6bee3a7e14 100644 --- a/src/panfrost/vulkan/panvk_android.c +++ b/src/panfrost/vulkan/panvk_android.c @@ -6,12 +6,16 @@ * SPDX-License-Identifier: MIT */ +#include + #include #include #include #include "util/log.h" +#include "panvk_entrypoints.h" + static int panvk_hal_open(const struct hw_module_t *mod, const char *id, struct hw_device_t **dev); static int panvk_hal_close(struct hw_device_t *dev);