diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-10-10 03:12:01 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-10-10 03:24:09 -0400 |
commit | 7fd5b1eb822e92ccbdb61325380b1fc429c8c993 (patch) | |
tree | 999934e7ce53c797119494c64b0004c11a841b52 /sound/pci | |
parent | 12f1771709ea53f11cf633c065d6160769795f24 (diff) |
ALSA: hda - Remove AZX_DCAPS_POSFIX_COMBO
It turned out that the COMBO position fix mode is rather more harmful,
and it got reverted (with the replacement of runtime->delay
calculation) recently. Hence we can get rid of AZX_DCAPS_POSFIX_COMBO
as well.
It's still possible to pass this mode via position_fix module option,
in case where this really helps on weird machines (who knows).
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/hda_intel.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index f09ff6c14041..6833835a218b 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c | |||
@@ -554,7 +554,6 @@ enum { | |||
554 | #define AZX_DCAPS_BUFSIZE (1 << 21) /* no buffer size alignment */ | 554 | #define AZX_DCAPS_BUFSIZE (1 << 21) /* no buffer size alignment */ |
555 | #define AZX_DCAPS_ALIGN_BUFSIZE (1 << 22) /* buffer size alignment */ | 555 | #define AZX_DCAPS_ALIGN_BUFSIZE (1 << 22) /* buffer size alignment */ |
556 | #define AZX_DCAPS_4K_BDLE_BOUNDARY (1 << 23) /* BDLE in 4k boundary */ | 556 | #define AZX_DCAPS_4K_BDLE_BOUNDARY (1 << 23) /* BDLE in 4k boundary */ |
557 | #define AZX_DCAPS_POSFIX_COMBO (1 << 24) /* Use COMBO as default */ | ||
558 | #define AZX_DCAPS_COUNT_LPIB_DELAY (1 << 25) /* Take LPIB as delay */ | 557 | #define AZX_DCAPS_COUNT_LPIB_DELAY (1 << 25) /* Take LPIB as delay */ |
559 | 558 | ||
560 | /* quirks for ATI SB / AMD Hudson */ | 559 | /* quirks for ATI SB / AMD Hudson */ |
@@ -2858,10 +2857,6 @@ static int __devinit check_position_fix(struct azx *chip, int fix) | |||
2858 | snd_printd(SFX "Using LPIB position fix\n"); | 2857 | snd_printd(SFX "Using LPIB position fix\n"); |
2859 | return POS_FIX_LPIB; | 2858 | return POS_FIX_LPIB; |
2860 | } | 2859 | } |
2861 | if (chip->driver_caps & AZX_DCAPS_POSFIX_COMBO) { | ||
2862 | snd_printd(SFX "Using COMBO position fix\n"); | ||
2863 | return POS_FIX_COMBO; | ||
2864 | } | ||
2865 | return POS_FIX_AUTO; | 2860 | return POS_FIX_AUTO; |
2866 | } | 2861 | } |
2867 | 2862 | ||