return 0;
 }
 
-static void i915_gtt_color_adjust(const struct drm_mm_node *node,
-                                 unsigned long color,
-                                 u64 *start,
-                                 u64 *end)
+static void i915_ggtt_color_adjust(const struct drm_mm_node *node,
+                                  unsigned long color,
+                                  u64 *start,
+                                  u64 *end)
 {
        if (i915_node_color_differs(node, color))
                *start += I915_GTT_PAGE_SIZE;
        ggtt->vm.has_read_only = IS_VALLEYVIEW(i915);
 
        if (!HAS_LLC(i915) && !HAS_PPGTT(i915))
-               ggtt->vm.mm.color_adjust = i915_gtt_color_adjust;
+               ggtt->vm.mm.color_adjust = i915_ggtt_color_adjust;
 
        if (!io_mapping_init_wc(&ggtt->iomap,
                                ggtt->gmadr.start,
 
 
        /* Currently the use of color_adjust is limited to cache domains within
         * the ggtt, and so the presence of mm.color_adjust is assumed to be
-        * i915_gtt_color_adjust throughout our driver, so using a mock color
+        * i915_ggtt_color_adjust throughout our driver, so using a mock color
         * adjust will work just fine for our purposes.
         */
        ggtt->vm.mm.color_adjust = mock_color_adjust;