[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <3222f3a0-f3cf-b1b9-df23-ec392f7dae4f@linux.intel.com>
Date: Mon, 14 Oct 2019 10:36:11 -0500
From: Pierre-Louis Bossart <pierre-louis.bossart@...ux.intel.com>
To: YueHaibing <yuehaibing@...wei.com>, lgirdwood@...il.com,
broonie@...nel.org, perex@...ex.cz, tiwai@...e.com,
jaska.uimonen@...ux.intel.com, yang.jie@...ux.intel.com,
yung-chuan.liao@...ux.intel.com
Cc: alsa-devel@...a-project.org, linux-kernel@...r.kernel.org
Subject: Re: [alsa-devel] [PATCH -next] ASoC: SOF: Fix randbuild error
On 10/14/19 4:13 AM, YueHaibing wrote:
> When LEDS_TRIGGER_AUDIO is m and SND_SOC_SOF is y,
>
> sound/soc/sof/control.o: In function `snd_sof_switch_put':
> control.c:(.text+0x587): undefined reference to `ledtrig_audio_set'
> control.c:(.text+0x593): undefined reference to `ledtrig_audio_set'
>
> Reported-by: Hulk Robot <hulkci@...wei.com>
> Fixes: 5d43001ae436 ("ASoC: SOF: acpi led support for switch controls")
> Signed-off-by: YueHaibing <yuehaibing@...wei.com>
Thanks for the fix.
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@...ux.intel.com>
> ---
> sound/soc/sof/control.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/sound/soc/sof/control.c b/sound/soc/sof/control.c
> index 41551e8..2c4abd4 100644
> --- a/sound/soc/sof/control.c
> +++ b/sound/soc/sof/control.c
> @@ -36,10 +36,12 @@ static void update_mute_led(struct snd_sof_control *scontrol,
>
> scontrol->led_ctl.led_value = temp;
>
> +#if IS_REACHABLE(CONFIG_LEDS_TRIGGER_AUDIO)
> if (!scontrol->led_ctl.direction)
> ledtrig_audio_set(LED_AUDIO_MUTE, temp ? LED_OFF : LED_ON);
> else
> ledtrig_audio_set(LED_AUDIO_MICMUTE, temp ? LED_OFF : LED_ON);
> +#endif
> }
>
> static inline u32 mixer_to_ipc(unsigned int value, u32 *volume_map, int size)
>
Powered by blists - more mailing lists