Reset to the device is not necessarily due to an error, so print it
as info instead of error.
In addition, print the type of reset we are doing:
- reset of the entire device (aka hard reset)
- reset of the device after user have released it (less than hard reset)
- lighter reset of an inference device (aka soft reset)
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
 
                take_release_locks(hdev);
 
-               dev_err(hdev->dev, "Going to RESET device!\n");
+               if (hard_reset)
+                       dev_info(hdev->dev, "Going to reset device\n");
+               else if (flags & HL_RESET_DEVICE_RELEASE)
+                       dev_info(hdev->dev,
+                               "Going to reset device after it was released by user\n");
+               else
+                       dev_info(hdev->dev,
+                               "Going to reset compute engines of inference device\n");
        }
 
 again: