diff options
| author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2007-11-19 15:50:52 +0000 |
|---|---|---|
| committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2007-11-19 15:50:52 +0000 |
| commit | c583f3c8d1bbed4a1f432bd22f15c126a95d63bb (patch) | |
| tree | b2527bf83096830db1f8262157a889faa0333f0f /firmware/drivers/audio/wm8731.c | |
| parent | 4f2473db6cecbb80323c5eee576b2e8e0901274f (diff) | |
| download | rockbox-c583f3c8d1bbed4a1f432bd22f15c126a95d63bb.zip rockbox-c583f3c8d1bbed4a1f432bd22f15c126a95d63bb.tar.gz rockbox-c583f3c8d1bbed4a1f432bd22f15c126a95d63bb.tar.bz2 rockbox-c583f3c8d1bbed4a1f432bd22f15c126a95d63bb.tar.xz | |
introduce general audiohw api for recording
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15687 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/audio/wm8731.c')
| -rw-r--r-- | firmware/drivers/audio/wm8731.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/audio/wm8731.c b/firmware/drivers/audio/wm8731.c index 66eb1e8..e051fc4 100644 --- a/firmware/drivers/audio/wm8731.c +++ b/firmware/drivers/audio/wm8731.c @@ -177,7 +177,7 @@ void audiohw_postinit(void) { sleep(HZ); - /* 4) Set the ‘Active’ bit in register 12h. */ + /* 4) Set the �Active� bit in register 12h. */ codec_set_active(true); audiohw_mute(false); @@ -316,7 +316,7 @@ void audiohw_set_recvol(int left, int right, int type) } } -void audiohw_set_monitor(int enable) +void audiohw_set_monitor(bool enable) { if(enable) { |