summaryrefslogtreecommitdiffstats
path: root/drivers/accel
diff options
context:
space:
mode:
authorOded Gabbay <ogabbay@kernel.org>2023-06-12 14:22:07 +0300
committerOded Gabbay <ogabbay@kernel.org>2023-10-09 12:37:18 +0300
commit89803af5355b04f4e2583d5c7170aa3676f9c1b7 (patch)
treeb33edcb68be247ca57cc3de87c08c7a052c2b193 /drivers/accel
parent2da9f8d8059331db9d26a5e794a417be547c4236 (diff)
downloadlinux-89803af5355b04f4e2583d5c7170aa3676f9c1b7.tar.gz
linux-89803af5355b04f4e2583d5c7170aa3676f9c1b7.tar.bz2
linux-89803af5355b04f4e2583d5c7170aa3676f9c1b7.zip
accel/habanalabs: remove pdev check on idle check
Our simulator supports idle check so no need anymore to check if pdev exists. Signed-off-by: Oded Gabbay <ogabbay@kernel.org> Reviewed-by: Ofir Bitton <obitton@habana.ai>
Diffstat (limited to 'drivers/accel')
-rw-r--r--drivers/accel/habanalabs/common/device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/accel/habanalabs/common/device.c b/drivers/accel/habanalabs/common/device.c
index 0d02f1f7b994..5e61761b8c11 100644
--- a/drivers/accel/habanalabs/common/device.c
+++ b/drivers/accel/habanalabs/common/device.c
@@ -424,7 +424,7 @@ static void hpriv_release(struct kref *ref)
/* Check the device idle status and reset if not idle.
* Skip it if already in reset, or if device is going to be reset in any case.
*/
- if (!hdev->reset_info.in_reset && !reset_device && hdev->pdev && !hdev->pldm)
+ if (!hdev->reset_info.in_reset && !reset_device && !hdev->pldm)
device_is_idle = hdev->asic_funcs->is_device_idle(hdev, idle_mask,
HL_BUSY_ENGINES_MASK_EXT_SIZE, NULL);
if (!device_is_idle) {