Only try removing intel_ips if it's actually loaded, and let the errors
through to the logs if removal fails.

Signed-off-by: Jani Nikula <[email protected]>
---
 tests/drv_module_reload_basic | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tests/drv_module_reload_basic b/tests/drv_module_reload_basic
index a221d65f725a..93cf7c005638 100755
--- a/tests/drv_module_reload_basic
+++ b/tests/drv_module_reload_basic
@@ -36,8 +36,10 @@ function reload() {
                rmmod snd_hda_intel && snd_hda_intel_unloaded=1
        fi
 
-       #ignore errors in ips - gen5 only
-       rmmod intel_ips &> /dev/null
+       # gen5 only
+       if mod_loaded intel_ips; then
+               rmmod intel_ips
+       fi
        rmmod i915 || return $IGT_EXIT_SKIP
        #ignore errors in intel-gtt, often built-in
        rmmod intel-gtt &> /dev/null
-- 
2.1.4

_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to