diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-12-17 10:12:37 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-12-17 10:14:59 +0300 |
commit | ef85f299c74e6c5dd98ec0230183be33f4c2813d (patch) | |
tree | 76b7089f7eb1994b42ff0d8921f3ef4008099aaf /sound/pci/hda/hda_controller.c | |
parent | f2777c1344ea7ce9ae3dd8f61166e3ad8b2a5962 (diff) | |
download | linux-ef85f299c74e6c5dd98ec0230183be33f4c2813d.tar.xz |
ALSA: hda - Merge RIRB_PRE_DELAY into CTX_WORKAROUND caps
AZX_DCAPS_RIRB_PRE_DELAY is always tied with AZX_DCAPS_CTX_WORKAROUND,
which is Creative's XFi specific. So, we can replace it and reduce
one more bit free for DCAPS.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_controller.c')
-rw-r--r-- | sound/pci/hda/hda_controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_controller.c b/sound/pci/hda/hda_controller.c index 10c77074b4dc..34022a36e5c5 100644 --- a/sound/pci/hda/hda_controller.c +++ b/sound/pci/hda/hda_controller.c @@ -956,7 +956,7 @@ irqreturn_t azx_interrupt(int irq, void *dev_id) status = azx_readb(chip, RIRBSTS); if (status & RIRB_INT_MASK) { if (status & RIRB_INT_RESPONSE) { - if (chip->driver_caps & AZX_DCAPS_RIRB_PRE_DELAY) + if (chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND) udelay(80); snd_hdac_bus_update_rirb(bus); } |