ASoC: dmic: introduce module_param wakeup_delay
authorJenny TC <jenny.tc@intel.com>
Wed, 28 Nov 2018 06:52:46 +0000 (12:22 +0530)
committerMark Brown <broonie@kernel.org>
Wed, 28 Nov 2018 15:19:32 +0000 (15:19 +0000)
Introducing a module param for wakeup_delay in order to
align with modeswitch_delay parameter. With this change, both
wakeup_delay and modeswitch_delay parameters can be passed
as module parameters.

Signed-off-by: Jenny TC <jenny.tc@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/dmic.c

index f4eb0a4..da921da 100644 (file)
@@ -34,6 +34,9 @@
 static int modeswitch_delay;
 module_param(modeswitch_delay, uint, 0644);
 
+static int wakeup_delay;
+module_param(wakeup_delay, uint, 0644);
+
 struct dmic {
        struct gpio_desc *gpio_en;
        int wakeup_delay;
@@ -115,6 +118,8 @@ static int dmic_component_probe(struct snd_soc_component *component)
                                 &dmic->wakeup_delay);
        device_property_read_u32(component->dev, "modeswitch-delay-ms",
                                 &dmic->modeswitch_delay);
+       if (wakeup_delay)
+               dmic->wakeup_delay  = wakeup_delay;
        if (modeswitch_delay)
                dmic->modeswitch_delay  = modeswitch_delay;