From patchwork Mon Feb 10 10:23:50 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 13967630 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9EB36C0219E for ; Mon, 10 Feb 2025 10:24:05 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id EC90210E169; Mon, 10 Feb 2025 10:24:04 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="FyXGZ9p1"; dkim-atps=neutral Received: from nyc.source.kernel.org (nyc.source.kernel.org [147.75.193.91]) by gabe.freedesktop.org (Postfix) with ESMTPS id 09C7310E169 for ; Mon, 10 Feb 2025 10:24:04 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by nyc.source.kernel.org (Postfix) with ESMTP id 5C40FA40FA0; Mon, 10 Feb 2025 10:22:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 832C4C4CEE5; Mon, 10 Feb 2025 10:24:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1739183042; bh=R/EbIe/Ut8zG0dwo6SVym6eFR34nXb/sZtcSXwfII9M=; h=From:To:Cc:Subject:Date:From; b=FyXGZ9p1YF2amZZxLqgEb4S5KaZInUNus+jqTjbyZvnMCCP532CUx5C420lzCYtEH ctsZnX75V2JhAiJhTBoGagRknLvE5FZfhUfJjpKRirvHN0jReAzQDQEBynC8O0IOz0 CszU0DZJ7UKixO5bCy5Xp81NayQegjo3oAWChYNlzl5fEe5qN5A3rBB5JooeistEMN mphdrEovcIoEz/9oWE1VpV1+jGuTk47oeYZWah4VvPG2rIAl/tVWEAiLSC2lFcm1bn NIm8d3H5Zne0Bp1F/yVBrAhk/3jHolVtGgOEUWuI/ADC3FhrJTvv1o+HcdO8nnds3B y2dpLfIcalyRw== From: Masahiro Yamada To: Frank Binns , Matt Coster Cc: linux-kernel@vger.kernel.org, Masahiro Yamada , David Airlie , Maarten Lankhorst , Maxime Ripard , Simona Vetter , Thomas Zimmermann , dri-devel@lists.freedesktop.org Subject: [PATCH] drm/imagination: remove unnecessary header include path Date: Mon, 10 Feb 2025 19:23:50 +0900 Message-ID: <20250210102352.1517115-1-masahiroy@kernel.org> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" drivers/gpu/drm/imagination/ includes local headers with the double-quote form (#include "..."). Hence, the header search path addition is unneeded. Signed-off-by: Masahiro Yamada Reviewed-by: Matt Coster --- drivers/gpu/drm/imagination/Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/gpu/drm/imagination/Makefile b/drivers/gpu/drm/imagination/Makefile index 9bc6a3884c22..3d9d4d40fb80 100644 --- a/drivers/gpu/drm/imagination/Makefile +++ b/drivers/gpu/drm/imagination/Makefile @@ -1,8 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-only OR MIT # Copyright (c) 2023 Imagination Technologies Ltd. -subdir-ccflags-y := -I$(src) - powervr-y := \ pvr_ccb.o \ pvr_cccb.o \