[PATCH] omap-mcbsp: properly check for availablity of mcbsp mux settings

2012-08-19 Thread Andreas Kemnade
The code did return -EINVAl when the mux_signal function pointer is available. If not, the corresponding function (the NULL pointer) is called. This patch inverts that logic. Signed-off-by: Andreas Kemnade --- sound/soc/omap/mcbsp.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) di

Re: [PATCH] omap-mcbsp: properly check for availablity of mcbsp mux settings

2012-08-19 Thread Jarkko Nikula
Hi On 08/19/2012 10:14 PM, Andreas Kemnade wrote: > The code did return -EINVAl when the mux_signal function pointer is available. > If not, the corresponding function (the NULL pointer) is called. > This patch inverts that logic. > > Signed-off-by: Andreas Kemnade > --- Thanks for the patch. Fo