On Fri, Nov 28, 2014 at 05:01:41PM +0000, Nikesh Oswal wrote:
This doesn't apply cleanly against current code, it appears to have been generated against Linus' tree rather than latest ASoC.
index 7ba7130..db60701 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -942,6 +942,7 @@ struct snd_soc_dai_link { int be_id; /* optional ID for machine driver BE identification */
const struct snd_soc_pcm_stream *params;
unsigned int num_params;
unsigned int dai_fmt; /* format to set on init */
Here we add num_params to the existing params; several existing drivers use params but they've not been updated.
+/* create new dapm dai link control */ +static int dapm_new_dai_link(struct snd_soc_dapm_widget *w) +{
- int i, ret;
- struct snd_kcontrol *kcontrol;
- struct snd_soc_dapm_context *dapm = w->dapm;
- struct snd_card *card = dapm->card->snd_card;
- /* skip control creation for links with 1 config */
- if (w->num_params == 1)
return 0;
Here we skip control creation if num_params is not 1. This means we'll try to create a control if num_params is zero which it will be for all existing users. This should actually work out fine due to the way loop iteration works but this appears to be entirely by accident, it's not obvious from the code. Either num_params needs to become mandatory for users and all existing users updated to provide it or the code should explicitly cope with num_params being zero.
@@ -3206,6 +3239,9 @@ static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w, source = source_p->source->priv; sink = sink_p->sink->priv;
- /* Select the configuration set by alsa control */
- config = &config[w->params_select];
This is needlessly obscure. We're first using config as shorthand for the array of configuration options and then using it as the option we selected. It'd be better to change the initial dereference to also have the array selection.
- private_value =
(unsigned long) devm_kmemdup(card->dev,
(void *)(kcontrol_dai_link[0].private_value),
sizeof(struct soc_enum), GFP_KERNEL);
This doesn't resemble the Linux coding style very strongly; normally the arguments of the function call would be indented with respect to the line with the function name.
+outfree_w:
- kfree(w);
+outfree_kcontrol_news:
- kfree(template.kcontrol_news);
+outfree_private_value:
- kfree((void *)private_value);
+outfree_link_name:
- kfree(link_name);
+outfree_w_param:
- for (count = 0 ; count < num_params; count++)
kfree(w_param_text[count]);
- kfree(w_param_text);
You're paring devm_ allocations with kfree(), that's going to break. Managed allocations need managed frees.