The failures with ROCm only happen with noretry=1, so
enable runtime pm when noretry=0 (the current default).
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Acked-by: Rajneesh Bhardwaj <rajneesh.bhardwaj@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
                case CHIP_BONAIRE:
                case CHIP_HAWAII:
 #endif
-               case CHIP_VEGA10:
                case CHIP_VEGA20:
                case CHIP_ARCTURUS:
                case CHIP_SIENNA_CICHLID:
                        if (amdgpu_runtime_pm > 0)
                                adev->runpm = true;
                        break;
+               case CHIP_VEGA10:
+                       /* turn runpm on if noretry=0 */
+                       if (!amdgpu_noretry)
+                               adev->runpm = true;
+                       break;
                default:
                        /* enable runpm on VI+ */
                        adev->runpm = true;