diff options
-rw-r--r-- | sound/soc/codecs/twl4030.c | 3 | ||||
-rw-r--r-- | sound/soc/codecs/twl4030.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c index 4199498a8918..bfda7a88e825 100644 --- a/sound/soc/codecs/twl4030.c +++ b/sound/soc/codecs/twl4030.c | |||
@@ -1311,6 +1311,9 @@ static int twl4030_hw_params(struct snd_pcm_substream *substream, | |||
1311 | case 48000: | 1311 | case 48000: |
1312 | mode |= TWL4030_APLL_RATE_48000; | 1312 | mode |= TWL4030_APLL_RATE_48000; |
1313 | break; | 1313 | break; |
1314 | case 96000: | ||
1315 | mode |= TWL4030_APLL_RATE_96000; | ||
1316 | break; | ||
1314 | default: | 1317 | default: |
1315 | printk(KERN_ERR "TWL4030 hw params: unknown rate %d\n", | 1318 | printk(KERN_ERR "TWL4030 hw params: unknown rate %d\n", |
1316 | params_rate(params)); | 1319 | params_rate(params)); |
diff --git a/sound/soc/codecs/twl4030.h b/sound/soc/codecs/twl4030.h index 33dbb144dad1..cb63765db1df 100644 --- a/sound/soc/codecs/twl4030.h +++ b/sound/soc/codecs/twl4030.h | |||
@@ -109,6 +109,7 @@ | |||
109 | #define TWL4030_APLL_RATE_32000 0x80 | 109 | #define TWL4030_APLL_RATE_32000 0x80 |
110 | #define TWL4030_APLL_RATE_44100 0x90 | 110 | #define TWL4030_APLL_RATE_44100 0x90 |
111 | #define TWL4030_APLL_RATE_48000 0xA0 | 111 | #define TWL4030_APLL_RATE_48000 0xA0 |
112 | #define TWL4030_APLL_RATE_96000 0xE0 | ||
112 | #define TWL4030_SEL_16K 0x04 | 113 | #define TWL4030_SEL_16K 0x04 |
113 | #define TWL4030_CODECPDZ 0x02 | 114 | #define TWL4030_CODECPDZ 0x02 |
114 | #define TWL4030_OPT_MODE 0x01 | 115 | #define TWL4030_OPT_MODE 0x01 |