diff options
| author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-12-14 00:06:16 +0000 | 
|---|---|---|
| committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-12-14 00:06:16 +0000 | 
| commit | f77777a5ab50a1f49f0717776d92e1337f09422b (patch) | |
| tree | f3e9a4100e8cf70a8453ecafdbf984f3712ee520 | |
| parent | 0a377c514a6d0d5eb3b723977007c682748d1baf (diff) | |
Fix mic gain value
| -rw-r--r-- | audio/headset.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/audio/headset.c b/audio/headset.c index e7425d5a..737957cc 100644 --- a/audio/headset.c +++ b/audio/headset.c @@ -1637,7 +1637,7 @@ void headset_set_state(struct device *dev, headset_state_t state)  		if (hs->mic_gain >= 0) {  			snprintf(str, sizeof(str) - 1, "\r\n+VGM=%u\r\n", -				hs->sp_gain); +				hs->mic_gain);  			headset_send(hs, str);  		}  		break; | 
