From patchwork Fri Mar 28 04:03:37 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: THO DAT NGUYEN/LGEDV ADVANCED PLATFORM TEAM X-Patchwork-Id: 23065 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 7CDE3C323E for ; Fri, 28 Mar 2025 06:24:56 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3456C6897C; Fri, 28 Mar 2025 07:24:55 +0100 (CET) Received: from lgeamrelo11.lge.com (lgeamrelo11.lge.com [156.147.23.51]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A8F9D614E7 for ; Fri, 28 Mar 2025 05:03:43 +0100 (CET) Received: from unknown (HELO lgemrelse6q.lge.com) (156.147.1.121) by 156.147.23.51 with ESMTP; 28 Mar 2025 13:03:40 +0900 X-Original-SENDERIP: 156.147.1.121 X-Original-MAILFROM: tho3.nguyen@lge.com Received: from unknown (HELO tho3-nguyen-weboscsm.bee-live.svc.cluster.local) (10.185.60.40) by 156.147.1.121 with ESMTP; 28 Mar 2025 13:03:39 +0900 X-Original-SENDERIP: 10.185.60.40 X-Original-MAILFROM: tho3.nguyen@lge.com From: "tho3.nguyen" To: libcamera-devel@lists.libcamera.org Cc: "tho3.nguyen" Subject: [PATCH] dma_buf_allocator.h: Fix build with gcc-15 Date: Fri, 28 Mar 2025 13:03:37 +0900 Message-Id: <20250328040338.71440-1-tho3.nguyen@lge.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-Mailman-Approved-At: Fri, 28 Mar 2025 07:24:54 +0100 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" To fix: ... In file included from ../git/src/libcamera/dma_buf_allocator.cpp:9: ../git/include/libcamera/internal/dma_buf_allocator.h:66:19: error: 'uint64_t' has not been declared 66 | void sync(uint64_t step); | ^~~~~~~~ ../git/include/libcamera/internal/dma_buf_allocator.h:17:1: note: 'uint64_t' is defined in header ''; this is probably fixable by adding '#include ' ... Signed-off-by: tho3.nguyen --- include/libcamera/internal/dma_buf_allocator.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/libcamera/internal/dma_buf_allocator.h b/include/libcamera/internal/dma_buf_allocator.h index 13600915..c22b9bbd 100644 --- a/include/libcamera/internal/dma_buf_allocator.h +++ b/include/libcamera/internal/dma_buf_allocator.h @@ -11,6 +11,7 @@ #include #include #include +#include #include #include