From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from letterbox.kde.org (letterbox.kde.org [46.43.1.242]) by gabe.freedesktop.org (Postfix) with ESMTPS id DACB910E0BC for ; Tue, 29 Nov 2022 17:27:27 +0000 (UTC) From: Zack Rusin To: igt-dev@lists.freedesktop.org Date: Tue, 29 Nov 2022 12:27:18 -0500 Message-Id: <20221129172718.151773-4-zack@kde.org> In-Reply-To: <20221129172718.151773-1-zack@kde.org> References: <20221129172718.151773-1-zack@kde.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t 3/3] igt: Switch warning to an info when not using i915 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Zack Rusin Cc: krastevm@vmware.com, banackm@vmware.com, mombasawalam@vmware.com Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Zack Rusin Because igt always tries to load i915 driver first for DRIVER_ANY every test using DRIVER_ANY on anything but i915 starts by printing a warning that i915 couldn't be loaded. Lets switch it to a general info line because it makes it hard to spot actual warnings when every subtest starts by warning about not being able to load i915. Signed-off-by: Zack Rusin --- lib/igt_kmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index bcf7dfeb..74924b5f 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -389,7 +389,7 @@ igt_i915_driver_load(const char *opts) ret = igt_kmod_load("i915", opts); if (ret) { - igt_warn("Could not load i915\n"); + igt_debug("Could not load i915\n"); return ret; } -- 2.37.2