Skip to content

Commit

Permalink
ASoC: omap-mcbsp: Fix compilation error due to leftover code
Browse files Browse the repository at this point in the history
Part of commit (which patches sound/soc/omap/mcbsp.c file):
8fef626 ARM/ASoC: omap-mcbsp: Remove CLKR/FSR mux configuration code

since the tree where it has been applied did not had the earlier patch:
d0db84e ASoC: omap-mcbsp: Fix 6pin mux configuration
which changed code around omap_mcbsp_6pin_src_mux().

Because of the missing part from 8fef626 the sound/soc/omap/mcbsp.c does
not compile in linux-next.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Peter Ujfalusi authored and Mark Brown committed Sep 5, 2012
1 parent fc60043 commit e93c7d1
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions sound/soc/omap/mcbsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -762,37 +762,6 @@ int omap2_mcbsp_set_clks_src(struct omap_mcbsp *mcbsp, u8 fck_src_id)

}

int omap_mcbsp_6pin_src_mux(struct omap_mcbsp *mcbsp, u8 mux)
{
const char *signal, *src;

if (!mcbsp->pdata->mux_signal)
return -EINVAL;

switch (mux) {
case CLKR_SRC_CLKR:
signal = "clkr";
src = "clkr";
break;
case CLKR_SRC_CLKX:
signal = "clkr";
src = "clkx";
break;
case FSR_SRC_FSR:
signal = "fsr";
src = "fsr";
break;
case FSR_SRC_FSX:
signal = "fsr";
src = "fsx";
break;
default:
return -EINVAL;
}

return mcbsp->pdata->mux_signal(mcbsp->dev, signal, src);
}

#define max_thres(m) (mcbsp->pdata->buffer_size)
#define valid_threshold(m, val) ((val) <= max_thres(m))
#define THRESHOLD_PROP_BUILDER(prop) \
Expand Down

0 comments on commit e93c7d1

Please sign in to comment.