mfd: wm8994: Make current device behaviour the default
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 27 Nov 2012 15:23:30 +0000 (15:23 +0000)
committerSamuel Ortiz <sameo@linux.intel.com>
Fri, 30 Nov 2012 10:12:23 +0000 (11:12 +0100)
As the wm8994 series of devices are now very mature make the current
behaviour of the devices the default behaviour, any future revisions are
likely to have only minor updates.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/wm8994-core.c

index f1ac2888d4881af166415c926dc4d74702669895..be1a424cbdeb512e8bb07b7d109253721fb22ea7 100644 (file)
@@ -529,11 +529,10 @@ static __devinit int wm8994_device_init(struct wm8994 *wm8994, int irq)
                        break;
                case 2:
                case 3:
+               default:
                        regmap_patch = wm8994_revc_patch;
                        patch_regs = ARRAY_SIZE(wm8994_revc_patch);
                        break;
-               default:
-                       break;
                }
                break;
 
@@ -552,18 +551,9 @@ static __devinit int wm8994_device_init(struct wm8994 *wm8994, int irq)
                /* Revision C did not change the relevant layer */
                if (wm8994->revision > 1)
                        wm8994->revision++;
-               switch (wm8994->revision) {
-               case 0:
-               case 1:
-               case 2:
-               case 3:
-               case 4:
-                       regmap_patch = wm1811_reva_patch;
-                       patch_regs = ARRAY_SIZE(wm1811_reva_patch);
-                       break;
-               default:
-                       break;
-               }
+
+               regmap_patch = wm1811_reva_patch;
+               patch_regs = ARRAY_SIZE(wm1811_reva_patch);
                break;
 
        default:
This page took 0.025314 seconds and 5 git commands to generate.