forked from len0rd/rockbox
Oops. Correct reversed DSP mode A/B bits for WM8731/21.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15008 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
51967f4856
commit
fc8bc5ca35
2 changed files with 4 additions and 4 deletions
|
@ -73,8 +73,8 @@ extern void audiohw_set_sample_rate(int sampling_control);
|
|||
#define AINTFCE_IWL_MASK (3 << 2)
|
||||
#define AINTFCE_LRP_I2S_RLO (0 << 4)
|
||||
#define AINTFCE_LRP_I2S_RHI (1 << 4)
|
||||
#define AINTFCE_DSP_MODE_A (0 << 4)
|
||||
#define AINTFCE_DSP_MODE_B (1 << 4)
|
||||
#define AINTFCE_DSP_MODE_B (0 << 4)
|
||||
#define AINTFCE_DSP_MODE_A (1 << 4)
|
||||
#define AINTFCE_LRSWAP (1 << 5)
|
||||
#define AINTFCE_MS (1 << 6)
|
||||
#define AINTFCE_BCLKINV (1 << 7)
|
||||
|
|
|
@ -105,8 +105,8 @@ extern void audiohw_set_monitor(int enable);
|
|||
#define AINTFCE_IWL_MASK (3 << 2)
|
||||
#define AINTFCE_LRP_I2S_RLO (0 << 4)
|
||||
#define AINTFCE_LRP_I2S_RHI (1 << 4)
|
||||
#define AINTFCE_DSP_MODE_A (0 << 4)
|
||||
#define AINTFCE_DSP_MODE_B (1 << 4)
|
||||
#define AINTFCE_DSP_MODE_B (0 << 4)
|
||||
#define AINTFCE_DSP_MODE_A (1 << 4)
|
||||
#define AINTFCE_LRSWAP (1 << 5)
|
||||
#define AINTFCE_MS (1 << 6)
|
||||
#define AINTFCE_BCLKINV (1 << 7)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue