From mboxrd@z Thu Jan 1 00:00:00 1970 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C68C1C3526F for ; Fri, 1 Apr 2022 14:51:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348597AbiDAOw4 (ORCPT ); Fri, 1 Apr 2022 10:52:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60488 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1349655AbiDAOql (ORCPT ); Fri, 1 Apr 2022 10:46:41 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6E2B329D25F; Fri, 1 Apr 2022 07:36:18 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id D3544B8250B; Fri, 1 Apr 2022 14:35:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 73BF4C36AE9; Fri, 1 Apr 2022 14:35:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1648823750; bh=AM4Arlzi1uMQcuMz63HSz5AFP4b2LLZXu13ilcUheqs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ktDllcx1YjGHNBfBO7lSkle6yacz9iKQJCZzsMJgoBBE/g+WX3njXFrlZIjNjKG0Z f/brejViNlWpY6DZ76M/c2Cjk0JYkGotRzzWIYirN/8ml9CKEYdSWmH9YIaPd9ZpF8 El0+m2W7mm+1CebK1JPn8n0hGw8fR1pIjw2iIzJbpJcOuQ2BbfSw22jcd0p3MGvmNH H/ImMO2NPn+HPn7kWp8W2u7EEcWtYkctVs3P3miv61cus6k75QrC+LK2Wi0AMlqkRh 5ozQWBnLvTAn2i+6qpZv0jo4jhmWkMgLjrZTshcIbV+Cp0CKPxxACRM3Hk/P/Lg0ta B9+5nnXsjlyJA== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Alex Deucher , Felix Kuehling , Sasha Levin , christian.koenig@amd.com, Xinhui.Pan@amd.com, airlied@linux.ie, daniel@ffwll.ch, amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org Subject: [PATCH AUTOSEL 5.16 062/109] drm/amdkfd: make CRAT table missing message informational only Date: Fri, 1 Apr 2022 10:32:09 -0400 Message-Id: <20220401143256.1950537-62-sashal@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220401143256.1950537-1-sashal@kernel.org> References: <20220401143256.1950537-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Alex Deucher [ Upstream commit 9dff13f9edf755a15f6507874185a3290c1ae8bb ] The driver has a fallback so make the message informational rather than a warning. The driver has a fallback if the Component Resource Association Table (CRAT) is missing, so make this informational now. Bug: https://gitlab.freedesktop.org/drm/amd/-/issues/1906 Reviewed-by: Felix Kuehling Signed-off-by: Alex Deucher Signed-off-by: Sasha Levin --- drivers/gpu/drm/amd/amdkfd/kfd_crat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_crat.c b/drivers/gpu/drm/amd/amdkfd/kfd_crat.c index c33d689f29e8..e574aa32a111 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_crat.c +++ b/drivers/gpu/drm/amd/amdkfd/kfd_crat.c @@ -1563,7 +1563,7 @@ int kfd_create_crat_image_acpi(void **crat_image, size_t *size) /* Fetch the CRAT table from ACPI */ status = acpi_get_table(CRAT_SIGNATURE, 0, &crat_table); if (status == AE_NOT_FOUND) { - pr_warn("CRAT table not found\n"); + pr_info("CRAT table not found\n"); return -ENODATA; } else if (ACPI_FAILURE(status)) { const char *err = acpi_format_exception(status); -- 2.34.1