[PATCH v1] atomisp:pci/runtime/queue: modify the return error value

From: Xiaoliang Pang
Date: Wed Sep 16 2020 - 23:53:09 EST


modify the return error value is -EDOM

Fixes: 2cac05dee6e30("drm/amd/powerplay: add the hw manager for vega12 (v4)")
Cc: Evan Quan <evan.quan@xxxxxxx>
Signed-off-by: Xiaoliang Pang <dawning.pang@xxxxxxxxx>
---
.../staging/media/atomisp/pci/runtime/queue/src/queue_access.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/media/atomisp/pci/runtime/queue/src/queue_access.c b/drivers/staging/media/atomisp/pci/runtime/queue/src/queue_access.c
index fdca743c4ab7..424e7a15a389 100644
--- a/drivers/staging/media/atomisp/pci/runtime/queue/src/queue_access.c
+++ b/drivers/staging/media/atomisp/pci/runtime/queue/src/queue_access.c
@@ -44,7 +44,7 @@ int ia_css_queue_load(
the value as zero. This causes division by 0
exception as the size is used in a modular
division operation. */
- return EDOM;
+ return -EDOM;
}
}

--
2.17.1