diff options
author | Oded Gabbay <ogabbay@kernel.org> | 2023-09-21 15:25:26 +0300 |
---|---|---|
committer | Oded Gabbay <ogabbay@kernel.org> | 2023-10-09 12:37:23 +0300 |
commit | 6fc69ca84af7cb78fca05d4b44b55098237d8d9e (patch) | |
tree | 23634efa75b5a11deff6ef22193bacd23b277aeb /drivers/accel | |
parent | e5873f6b914918797219ca7515afd4bbfa5b8ec4 (diff) |
accel/habanalabs: print device name when it is removed
Notifies the user which device was removed. It is important in
a server with multiple devices.
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/accel/habanalabs/common/device.c b/drivers/accel/habanalabs/common/device.c index b1d330cd2537..9711e8fc979d 100644 --- a/drivers/accel/habanalabs/common/device.c +++ b/drivers/accel/habanalabs/common/device.c @@ -2420,7 +2420,7 @@ void hl_device_fini(struct hl_device *hdev) u64 reset_sec; int i, rc; - dev_info(hdev->dev, "Removing device\n"); + dev_info(hdev->dev, "Removing device %s\n", dev_name(&(hdev)->pdev->dev)); hdev->device_fini_pending = 1; flush_delayed_work(&hdev->device_reset_work.reset_work); |