summaryrefslogtreecommitdiffstats
path: root/drivers/misc/habanalabs/firmware_if.c
diff options
context:
space:
mode:
authorOded Gabbay2019-05-04 15:43:20 +0200
committerOded Gabbay2019-05-04 15:43:20 +0200
commitcfc2f35006cbecbbb6672652120cdaf0ec796593 (patch)
treed0bac25e3760e68ecac5fdceb1e70c983c830371 /drivers/misc/habanalabs/firmware_if.c
parentocxl: Allow contexts to be attached with a NULL mm (diff)
downloadkernel-qcow2-linux-cfc2f35006cbecbbb6672652120cdaf0ec796593.tar.gz
kernel-qcow2-linux-cfc2f35006cbecbbb6672652120cdaf0ec796593.tar.xz
kernel-qcow2-linux-cfc2f35006cbecbbb6672652120cdaf0ec796593.zip
habanalabs: improve a couple of error messages
This patch improves the error message that is shown when a new user tries to open a new FD while there is already an existing user that is working on the device. It also improves the error message in case of missing firmware file. Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Diffstat (limited to 'drivers/misc/habanalabs/firmware_if.c')
-rw-r--r--drivers/misc/habanalabs/firmware_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/habanalabs/firmware_if.c b/drivers/misc/habanalabs/firmware_if.c
index eda5d7fcb79f..19d1271a8f5c 100644
--- a/drivers/misc/habanalabs/firmware_if.c
+++ b/drivers/misc/habanalabs/firmware_if.c
@@ -29,13 +29,13 @@ int hl_fw_push_fw_to_device(struct hl_device *hdev, const char *fw_name,
rc = request_firmware(&fw, fw_name, hdev->dev);
if (rc) {
- dev_err(hdev->dev, "Failed to request %s\n", fw_name);
+ dev_err(hdev->dev, "Firmware file %s is not found!\n", fw_name);
goto out;
}
fw_size = fw->size;
if ((fw_size % 4) != 0) {
- dev_err(hdev->dev, "illegal %s firmware size %zu\n",
+ dev_err(hdev->dev, "Illegal %s firmware size %zu\n",
fw_name, fw_size);
rc = -EINVAL;
goto out;