From patchwork Thu Mar 13 04:16:56 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yo-Jung (Leo) Lin" X-Patchwork-Id: 14014558 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 9EE54C282DE for ; Thu, 13 Mar 2025 08:30:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 249CB10E7FC; Thu, 13 Mar 2025 08:30:33 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.b="dGE+CHhX"; dkim-atps=neutral X-Greylist: delayed 438 seconds by postgrey-1.36 at gabe; Thu, 13 Mar 2025 04:25:04 UTC Received: from smtp-relay-canonical-0.canonical.com (smtp-relay-canonical-0.canonical.com [185.125.188.120]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6192A10E7F3 for ; Thu, 13 Mar 2025 04:25:04 +0000 (UTC) Received: from localhost.localdomain (unknown [10.101.200.229]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-0.canonical.com (Postfix) with ESMTPSA id 35E6B3F942; Thu, 13 Mar 2025 04:17:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1741839463; bh=c+lwiNEeZKR7bI4cisdbs6du9vDi2xjExAwAe2kT2pU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=dGE+CHhX76Bjsezh7k3+mUoKnaOtigHVK8ZgjC3t+JdL598zHcLvL+cEbBWMBVhrC I9hqbl5AxOeN6xgdOr5eERdLUfCZwNgbx+tKBQs/DS49ye20oc9jK421R2BxxxjfEN /t/GDbo4f2Ev77VWm4OhNH432h+XFEYMYF4JEyNVLqXSrx7+f6Usgeg2RX98otPtU5 FxnRl4iGXKzD7NGj1logg0lXeZ9D/9SvxDS9dAD+B2HiPOZG+2ynkgPvwV4OpuOMYy FMjkRcw5KwG2KXErJxXLJcz/mEeVm83d+XR3pEQeaSN5pWOFwcIRGedFYXP09hPrVv VWMPFSEveZHsQ== From: "Yo-Jung (Leo) Lin" To: Cc: leo.lin@canonical.com, Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org Subject: [PATCH] drm: add .hdrtest to .gitignore under drm directories Date: Thu, 13 Mar 2025 12:16:56 +0800 Message-ID: <20250313041711.872378-1-leo.lin@canonical.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 13 Mar 2025 08:30:32 +0000 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" The header self-contained tests in drm may leave .hdrtest files in include/drm/ and drivers/gpu/drm/. Omit them by adding .gitignore Signed-off-by: Yo-Jung (Leo) Lin --- drivers/gpu/drm/.gitignore | 1 + include/drm/.gitignore | 1 + 2 files changed, 2 insertions(+) create mode 100644 drivers/gpu/drm/.gitignore create mode 100644 include/drm/.gitignore diff --git a/drivers/gpu/drm/.gitignore b/drivers/gpu/drm/.gitignore new file mode 100644 index 000000000000..d9a77f3b59b2 --- /dev/null +++ b/drivers/gpu/drm/.gitignore @@ -0,0 +1 @@ +*.hdrtest diff --git a/include/drm/.gitignore b/include/drm/.gitignore new file mode 100644 index 000000000000..d9a77f3b59b2 --- /dev/null +++ b/include/drm/.gitignore @@ -0,0 +1 @@ +*.hdrtest