Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 81524
b: refs/heads/master
c: 389619f
h: refs/heads/master
v: v3
  • Loading branch information
Ville Syrjala authored and Jaroslav Kysela committed Jan 31, 2008
1 parent 76ea74e commit 2468b7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d47ac4338301c373eca9d817ec9c6e33b069ac51
refs/heads/master: 389619f1063ed21cf237e2a8081be42e66d3c9a6
8 changes: 4 additions & 4 deletions trunk/sound/soc/codecs/wm8731.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,13 +562,13 @@ static int wm8731_init(struct snd_soc_device *socdev)

/* set the update bits */
reg = wm8731_read_reg_cache(codec, WM8731_LOUT1V);
wm8731_write(codec, WM8731_LOUT1V, reg | 0x0100);
wm8731_write(codec, WM8731_LOUT1V, reg & ~0x0100);
reg = wm8731_read_reg_cache(codec, WM8731_ROUT1V);
wm8731_write(codec, WM8731_ROUT1V, reg | 0x0100);
wm8731_write(codec, WM8731_ROUT1V, reg & ~0x0100);
reg = wm8731_read_reg_cache(codec, WM8731_LINVOL);
wm8731_write(codec, WM8731_LINVOL, reg | 0x0100);
wm8731_write(codec, WM8731_LINVOL, reg & ~0x0100);
reg = wm8731_read_reg_cache(codec, WM8731_RINVOL);
wm8731_write(codec, WM8731_RINVOL, reg | 0x0100);
wm8731_write(codec, WM8731_RINVOL, reg & ~0x0100);

wm8731_add_controls(codec);
wm8731_add_widgets(codec);
Expand Down

0 comments on commit 2468b7d

Please sign in to comment.