From 35058d94edd3148f980a313f307e6a1ca8f288f1 Mon Sep 17 00:00:00 2001 From: Ch Vamshi Krishna <40261882+chvamshi-xilinx@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:50:28 +0530 Subject: [PATCH] minor error message tweak (#8556) Co-authored-by: ch vamshi krishna --- src/runtime_src/core/edge/drm/zocl/common/zocl_xclbin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime_src/core/edge/drm/zocl/common/zocl_xclbin.c b/src/runtime_src/core/edge/drm/zocl/common/zocl_xclbin.c index 791acaa30a..d9452c25c0 100644 --- a/src/runtime_src/core/edge/drm/zocl/common/zocl_xclbin.c +++ b/src/runtime_src/core/edge/drm/zocl/common/zocl_xclbin.c @@ -88,7 +88,7 @@ zocl_load_partial(struct drm_zocl_dev *zdev, const char *buffer, int length, void __iomem *map = NULL; if (!slot->pr_isolation_addr) { - DRM_ERROR("PR isolation address is not set"); + DRM_INFO("PR isolation address is not set"); } else { map = ioremap(slot->pr_isolation_addr, PR_ISO_SIZE); if (IS_ERR_OR_NULL(map)) {