diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2017-11-03 21:44:55 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2017-11-03 21:44:55 +0100 |
commit | 3ed75cbda1d7acdb0d56ea7f9b584dac3cdcac05 (patch) | |
tree | c39d4f6f9060af86dff753517535e7a71fffe79d /HDA-intel | |
parent | 86cfccd0951f7c82f409eb763bc991042055c134 (diff) |
Fix Sample Intel Hal
Diffstat (limited to 'HDA-intel')
-rw-r--r-- | HDA-intel/IntelHdaHAL.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/HDA-intel/IntelHdaHAL.c b/HDA-intel/IntelHdaHAL.c index 076d067..5378ace 100644 --- a/HDA-intel/IntelHdaHAL.c +++ b/HDA-intel/IntelHdaHAL.c @@ -62,10 +62,10 @@ STATIC halVolRampT volRampEmergency= { // Map HAL hight sndctl with Alsa numid and optionally with a custom callback for non Alsa supported functionalities. STATIC alsaHalMapT alsaHalMap[]= { - { .tag=Master_Playback_Volume, . ctl={.name="PCM Playback Volume", .value=50 } }, + { .tag=Master_Playback_Volume, . ctl={.name="Master Playback Volume", .value=50 } }, { .tag=PCM_Playback_Volume , .ctl={.name="PCM Playback Volume", .value=50 } }, - { .tag=PCM_Playback_Switch , .ctl={.name="PCM Playback Switch", .value=01 } }, - { .tag=Capture_Volume , .ctl={.name="Mic Capture Volume" } }, + { .tag=PCM_Playback_Switch , .ctl={.name="Master Playback Switch", .value=01 } }, + { .tag=Capture_Volume , .ctl={.name="Capture Volume" } }, // Sound card does not have hardware volume ramping { .tag=Master_Playback_Ramp , .cb={.callback=volumeRamp, .handle=&volRampMaster}, .info="ramp volume linearly according to current ramp setting", |