#include "amdgpu_gmc.h"
 #include "amdgpu_ras.h"
 #include "amdgpu_xgmi.h"
-#include "mmhub_v1_0.h"
-#include "mmhub_v9_4.h"
-#include "mmhub_v1_7.h"
 
 /**
  * amdgpu_gmc_pdb0_alloc - allocate vram for pdb0
                        return r;
        }
 
-       /* initialize mmhub ras funcs */
-       switch (adev->asic_type) {
-       case CHIP_VEGA20:
-               adev->mmhub.ras_funcs = &mmhub_v1_0_ras_funcs;
-               break;
-       case CHIP_ARCTURUS:
-               adev->mmhub.ras_funcs = &mmhub_v9_4_ras_funcs;
-               break;
-       case CHIP_ALDEBARAN:
-               adev->mmhub.ras_funcs = &mmhub_v1_7_ras_funcs;
-               break;
-       default:
-               /* mmhub ras is not available */
-               break;
-       }
-
        if (adev->mmhub.ras_funcs &&
            adev->mmhub.ras_funcs->ras_late_init) {
                r = adev->mmhub.ras_funcs->ras_late_init(adev);
 
        }
 }
 
+static void gmc_v9_0_set_mmhub_ras_funcs(struct amdgpu_device *adev)
+{
+       switch (adev->asic_type) {
+       case CHIP_VEGA20:
+               adev->mmhub.ras_funcs = &mmhub_v1_0_ras_funcs;
+               break;
+       case CHIP_ARCTURUS:
+               adev->mmhub.ras_funcs = &mmhub_v9_4_ras_funcs;
+               break;
+       case CHIP_ALDEBARAN:
+               adev->mmhub.ras_funcs = &mmhub_v1_7_ras_funcs;
+               break;
+       default:
+               /* mmhub ras is not available */
+               break;
+       }
+}
+
 static void gmc_v9_0_set_gfxhub_funcs(struct amdgpu_device *adev)
 {
        adev->gfxhub.funcs = &gfxhub_v1_0_funcs;
        gmc_v9_0_set_irq_funcs(adev);
        gmc_v9_0_set_umc_funcs(adev);
        gmc_v9_0_set_mmhub_funcs(adev);
+       gmc_v9_0_set_mmhub_ras_funcs(adev);
        gmc_v9_0_set_gfxhub_funcs(adev);
 
        adev->gmc.shared_aperture_start = 0x2000000000000000ULL;