Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1532861
| From | Chanwoo Choi <cw00.choi@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH V2 4/5] extcon: arizona: Use SoC component pin control functions |
| Date | 2016-11-30 01:20 +0100 |
| Message-ID | <sJ0MW-79y-15@gated-at.bofh.it> (permalink) |
| References | <sISPn-1Rc-3@gated-at.bofh.it> <sJ0MW-79y-17@gated-at.bofh.it> <sISPn-1Rc-1@gated-at.bofh.it> |
| Organization | Samsung Electronics |
Hi Richard,
I have no any objection for this patch.
But, the patch4 is dependent on patch1.
After finished the review of patch1,
I'll add acekd-by tag.
Best Regards,
Chanwoo Choi
On 2016년 11월 30일 00:44, Richard Fitzgerald wrote:
> The name of a codec pin can have an optional prefix string, which is
> defined by the SoC machine driver. The snd_soc_dapm_x_pin functions
> take the fully-specified name including the prefix and so the existing
> code would fail to find the pin if the audio machine driver had added
> a prefix.
>
> Switch to using the snd_soc_component_x_pin equivalent functions that
> take a specified SoC component and automatically add the name prefix to
> the provided pin name.
>
> Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
> ---
> drivers/extcon/extcon-arizona.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c
> index aeab47d..ed78b7c 100644
> --- a/drivers/extcon/extcon-arizona.c
> +++ b/drivers/extcon/extcon-arizona.c
> @@ -270,9 +270,10 @@ static void arizona_extcon_pulse_micbias(struct arizona_extcon_info *info)
> struct arizona *arizona = info->arizona;
> const char *widget = arizona_extcon_get_micbias(info);
> struct snd_soc_dapm_context *dapm = arizona->dapm;
> + struct snd_soc_component *component = snd_soc_dapm_to_component(dapm);
> int ret;
>
> - ret = snd_soc_dapm_force_enable_pin(dapm, widget);
> + ret = snd_soc_component_force_enable_pin(component, widget);
> if (ret != 0)
> dev_warn(arizona->dev, "Failed to enable %s: %d\n",
> widget, ret);
> @@ -280,7 +281,7 @@ static void arizona_extcon_pulse_micbias(struct arizona_extcon_info *info)
> snd_soc_dapm_sync(dapm);
>
> if (!arizona->pdata.micd_force_micbias) {
> - ret = snd_soc_dapm_disable_pin(arizona->dapm, widget);
> + ret = snd_soc_component_disable_pin(component, widget);
> if (ret != 0)
> dev_warn(arizona->dev, "Failed to disable %s: %d\n",
> widget, ret);
> @@ -345,6 +346,7 @@ static void arizona_stop_mic(struct arizona_extcon_info *info)
> struct arizona *arizona = info->arizona;
> const char *widget = arizona_extcon_get_micbias(info);
> struct snd_soc_dapm_context *dapm = arizona->dapm;
> + struct snd_soc_component *component = snd_soc_dapm_to_component(dapm);
> bool change;
> int ret;
>
> @@ -352,7 +354,7 @@ static void arizona_stop_mic(struct arizona_extcon_info *info)
> ARIZONA_MICD_ENA, 0,
> &change);
>
> - ret = snd_soc_dapm_disable_pin(dapm, widget);
> + ret = snd_soc_component_disable_pin(component, widget);
> if (ret != 0)
> dev_warn(arizona->dev,
> "Failed to disable %s: %d\n",
>
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH V2 4/5] extcon: arizona: Use SoC component pin control functions Richard Fitzgerald <rf@opensource.wolfsonmicro.com> - 2016-11-29 16:50 +0100
Re: [PATCH V2 4/5] extcon: arizona: Use SoC component pin control functions Chanwoo Choi <cw00.choi@samsung.com> - 2016-11-30 01:20 +0100
Re: [PATCH V2 4/5] extcon: arizona: Use SoC component pin control functions Mark Brown <broonie@kernel.org> - 2016-11-30 18:30 +0100
Re: [PATCH V2 4/5] extcon: arizona: Use SoC component pin control functions Chanwoo Choi <cw00.choi@samsung.com> - 2016-12-01 03:00 +0100
csiph-web