diff --git a/bsp_diff/common/vendor/intel/external/drm-hwcomposer/0001-Adding-missing-hwcomposer-hal-virtual-functions.patch b/bsp_diff/common/vendor/intel/external/drm-hwcomposer/0001-Adding-missing-hwcomposer-hal-virtual-functions.patch deleted file mode 100644 index ca48933d4b..0000000000 --- a/bsp_diff/common/vendor/intel/external/drm-hwcomposer/0001-Adding-missing-hwcomposer-hal-virtual-functions.patch +++ /dev/null @@ -1,61 +0,0 @@ -From 18dd8fdf22f09d4d3de4c0d1b0a856ceff8b096e Mon Sep 17 00:00:00 2001 -From: "Tekriwal, Tanuj" -Date: Wed, 5 Feb 2025 09:31:54 +0000 -Subject: [PATCH] Adding missing hwcomposer hal virtual functions - -Tests Done: Build proceeds - -Tracked-On: NA -Signed-off-by: Tekriwal, Tanuj ---- - hwc3-server/default/ComposerClient.cpp | 11 +++++++++++ - hwc3-server/default/ComposerClient.h | 4 ++++ - 2 files changed, 15 insertions(+) - -diff --git a/hwc3-server/default/ComposerClient.cpp b/hwc3-server/default/ComposerClient.cpp -index f67d006..0eef868 100644 ---- a/hwc3-server/default/ComposerClient.cpp -+++ b/hwc3-server/default/ComposerClient.cpp -@@ -431,6 +431,17 @@ ndk::ScopedAStatus ComposerClient::notifyExpectedPresent(int64_t, const ClockMon - return TO_BINDER_STATUS(EX_UNSUPPORTED); - } - -+ndk::ScopedAStatus ComposerClient::startHdcpNegotiation(int64_t display, const AidlHdcpLevels& levels) { -+ return TO_BINDER_STATUS(EX_UNSUPPORTED); -+} -+ -+ndk::ScopedAStatus ComposerClient::getMaxLayerPictureProfiles(int64_t display, int32_t* maxProfiles) { -+ return TO_BINDER_STATUS(EX_UNSUPPORTED); -+} -+ -+ndk::ScopedAStatus ComposerClient::getLuts(int64_t, const std::vector&, std::vector* out_luts) { -+ return TO_BINDER_STATUS(EX_UNSUPPORTED); -+} - - void ComposerClient::HalEventCallback::onHotplug(int64_t display, bool connected) { - DEBUG_FUNC(); -diff --git a/hwc3-server/default/ComposerClient.h b/hwc3-server/default/ComposerClient.h -index b6963fc..0a9a948 100644 ---- a/hwc3-server/default/ComposerClient.h -+++ b/hwc3-server/default/ComposerClient.h -@@ -27,6 +27,7 @@ - #include "include/IResourceManager.h" - - namespace aidl::android::hardware::graphics::composer3::impl { -+using AidlHdcpLevels = aidl::android::hardware::drm::HdcpLevels; - - class ComposerClient : public BnComposerClient { - public: -@@ -141,6 +142,9 @@ public: - ndk::ScopedAStatus notifyExpectedPresent(int64_t displayId, - const ClockMonotonicTimestamp& expectedPresentTime, - int32_t maxFrameIntervalNs) override; -+ ndk::ScopedAStatus startHdcpNegotiation(int64_t display, const AidlHdcpLevels& levels) override; -+ ndk::ScopedAStatus getMaxLayerPictureProfiles(int64_t display, int32_t* maxProfiles) override; -+ ndk::ScopedAStatus getLuts(int64_t, const std::vector&, std::vector* out_luts) override; - - protected: - ::ndk::SpAIBinder createBinder() override; --- -2.34.1 -