On 25.07.2013 18:40, Dan Carpenter wrote: > ADAU1707_CLKDIV_UNSET is always compared against an unsigned int and > not an unsigned long. The current tests are always false. Well, in my case, sizeof(unsigned int) equals sizeof(unsigned long), so it didn't hit me. But it should be fixed of course, thanks for catching. > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Acked-by: Daniel Mack <zonque@xxxxxxxxx> > > diff --git a/sound/soc/codecs/adau1701.c b/sound/soc/codecs/adau1701.c > index 44d8a95..2c10252 100644 > --- a/sound/soc/codecs/adau1701.c > +++ b/sound/soc/codecs/adau1701.c > @@ -91,7 +91,7 @@ > #define ADAU1701_OSCIPOW_OPD 0x04 > #define ADAU1701_DACSET_DACINIT 1 > > -#define ADAU1707_CLKDIV_UNSET (-1UL) > +#define ADAU1707_CLKDIV_UNSET (-1U) > > #define ADAU1701_FIRMWARE "adau1701.bin" > > _______________________________________________ > Alsa-devel mailing list > Alsa-devel@xxxxxxxxxxxxxxxx > http://mailman.alsa-project.org/mailman/listinfo/alsa-devel > -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html