drm/amdkfd: make CRAT table missing message informational only
authorjsg <jsg@openbsd.org>
Thu, 14 Apr 2022 08:42:44 +0000 (08:42 +0000)
committerjsg <jsg@openbsd.org>
Thu, 14 Apr 2022 08:42:44 +0000 (08:42 +0000)
From Alex Deucher
f325d3e1dcc85fc3cd984f30fd443ab2f3b42631 in linux 5.15.y/5.15.34
9dff13f9edf755a15f6507874185a3290c1ae8bb in mainline linux

sys/dev/pci/drm/amd/amdkfd/kfd_crat.c

index c33d689..e574aa3 100644 (file)
@@ -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);