Re: [alsa-devel] [PATCH] audio: sgtl5000: Add MicBias resistor support in DT
From: Fabio Estevam <hidden>
Date: 2014-10-12 21:15:32
Also in:
alsa-devel
On Sun, Oct 12, 2014 at 3:39 PM, Jean-Michel Hautbois [off-list ref] wrote:
+ if (np) {
+ if (!of_property_read_u32(np,
+ "sgtl5000-micbias-resistor", &value)) {
+ switch (value) {
+ case 1:
+ sgtl5000->micbias_resistor =
+ SGTL5000_MICBIAS_2K;
+ break;
+ case 2:
+ sgtl5000->micbias_resistor =
+ SGTL5000_MICBIAS_4K;
+ break;
+ case 3:
+ sgtl5000->micbias_resistor =
+ SGTL5000_MICBIAS_8K;
+ break;
+ default:
+ sgtl5000->micbias_resistor =
+ SGTL5000_MICBIAS_OFF;
+ dev_err(&client->dev,
+ "Unsuitable MicBias resistor\n");The case 0 should SGTL5000_MICBIAS_OFF and the default should be SGTL5000_MICBIAS_4K. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html