summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown2012-12-20 16:38:03 +0100
committerSamuel Ortiz2013-02-14 00:22:46 +0100
commitd7768111a98bcf865e1e14d8c663789f6e21393d (patch)
tree6497a158fe540a4b1464520ca26efcb675f337f2
parentmfd: wm5102: Mark only extant DSP registers volatile (diff)
downloadkernel-qcow2-linux-d7768111a98bcf865e1e14d8c663789f6e21393d.tar.gz
kernel-qcow2-linux-d7768111a98bcf865e1e14d8c663789f6e21393d.tar.xz
kernel-qcow2-linux-d7768111a98bcf865e1e14d8c663789f6e21393d.zip
mfd: arizona: Register MICVDD supply first to ensure no retries
Not strictly required as probe deferral will take care of everything but it makes boot a little smoother. Reported-by: Ryo Tsutsui <Ryo.Tsutsui@wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r--drivers/mfd/arizona-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c
index 222c03a5ddc0..1ab02a7d2b05 100644
--- a/drivers/mfd/arizona-core.c
+++ b/drivers/mfd/arizona-core.c
@@ -275,19 +275,19 @@ static struct mfd_cell early_devs[] = {
};
static struct mfd_cell wm5102_devs[] = {
+ { .name = "arizona-micsupp" },
{ .name = "arizona-extcon" },
{ .name = "arizona-gpio" },
{ .name = "arizona-haptics" },
- { .name = "arizona-micsupp" },
{ .name = "arizona-pwm" },
{ .name = "wm5102-codec" },
};
static struct mfd_cell wm5110_devs[] = {
+ { .name = "arizona-micsupp" },
{ .name = "arizona-extcon" },
{ .name = "arizona-gpio" },
{ .name = "arizona-haptics" },
- { .name = "arizona-micsupp" },
{ .name = "arizona-pwm" },
{ .name = "wm5110-codec" },
};