diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-03-30 10:01:04 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-03-30 10:01:04 +0000 |
commit | e62152ddf9a7b4f8f7a719f8a3bfc5f1bae83fe3 (patch) | |
tree | b899b3503ae307fb89c7b5c419045407a957edfe /firmware/drivers | |
parent | 8bdd92b05e2c87b0bae478610436f292c9d3b952 (diff) |
Better sound quality on the iAudio X5 using the correct MCLK frequency
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9354 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r-- | firmware/drivers/tlv320.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/tlv320.c b/firmware/drivers/tlv320.c index bae1f59f95..e2ad5d7594 100644 --- a/firmware/drivers/tlv320.c +++ b/firmware/drivers/tlv320.c @@ -81,7 +81,7 @@ void tlv320_init(void) tlv320_write_reg(REG_DAIF, DAIF_IWL_16|DAIF_FOR_I2S); tlv320_set_headphone_vol(0, 0); tlv320_write_reg(REG_DIA, DIA_ACT); - tlv320_write_reg(REG_SRC, SRC_CLKIN); + tlv320_write_reg(REG_SRC, (8 << 2)); /* 44.1kHz */ } /** |