Comment 18 for bug 535529

Revision history for this message
David Henningsson (diwic) wrote : Re: [SB Audigy 2 ZS] Volume swelling

I assume you have also tried:

### Automatically load driver modules depending on the hardware available
.ifexists module-udev-detect.so
load-module module-udev-detect ignore_dB=1
.else
### Alternatively use the static hardware detection module (for systems that
### lack udev support)
load-module module-detect
.endif

instead of your current (which does not make sense):

### Automatically load driver modules depending on the hardware available
.ifexists module-udev-detect.so ignore_dB=1
load-module module-udev-detect ignore_dB=2
.else
### Alternatively use the static hardware detection module (for systems that
### lack udev support)
load-module module-detect
.endif

?