]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drm/i915: Future proof uncore_init.
authorRodrigo Vivi <rodrigo.vivi@intel.com>
Thu, 3 Sep 2015 21:38:00 +0000 (14:38 -0700)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 4 Sep 2015 08:10:57 +0000 (10:10 +0200)
Unless future specs tells otherwise we can assume future gens
inherit some stuff from the previous so let's handle
missed cases when we know tehy should't be there and assume
default equals newest one.

No functional changes.

v2: Remove useless case as pointed out by Ville.

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_uncore.c

index dec20d60daf03a931d5793c7c646380c854e66fe..440e2a5658afa6a443ce7a2050bd33905594f383 100644 (file)
@@ -1202,8 +1202,6 @@ void intel_uncore_init(struct drm_device *dev)
 
        switch (INTEL_INFO(dev)->gen) {
        default:
-               MISSING_CASE(INTEL_INFO(dev)->gen);
-               return;
        case 9:
                ASSIGN_WRITE_MMIO_VFUNCS(gen9);
                ASSIGN_READ_MMIO_VFUNCS(gen9);