Skip to content

Commit

Permalink
ASoC: topology: fix typo in soc_tplg_kcontrol_bind_io()
Browse files Browse the repository at this point in the history
Signed-off-by: Mengdong Lin <[email protected]>
Signed-off-by: Liam Girdwood <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
mengdonglin authored and broonie committed Aug 4, 2015
1 parent bc0195a commit 5406898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/soc-topology.c
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
k->put = bops[i].put;
if (k->get == NULL && bops[i].id == hdr->ops.get)
k->get = bops[i].get;
if (k->info == NULL && ops[i].id == hdr->ops.info)
if (k->info == NULL && bops[i].id == hdr->ops.info)
k->info = bops[i].info;
}

Expand Down

0 comments on commit 5406898

Please sign in to comment.