We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tested with the current debian testing.
--- a/sound/pci/hdsp/hdspe/hdspe_core.c +++ b/sound/pci/hdsp/hdspe/hdspe_core.c @@ -422,9 +422,9 @@ static int snd_hdspe_create(struct hdspe *hdspe) if (err < 0) return err; - err = pci_set_dma_mask(pci, DMA_BIT_MASK(32)); + err = dma_set_mask(&pci->dev, DMA_BIT_MASK(32)); if (!err) - err = pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32)); + err = dma_set_coherent_mask(&pci->dev, DMA_BIT_MASK(32)); if (err != 0) { dev_err(card->dev, "No suitable DMA addressing support.\n"); return -ENODEV;
The text was updated successfully, but these errors were encountered:
Thank you for this. I will try to test also
Sorry, something went wrong.
I was unable to reproduce this on Debian Test using kernel 6.1.0-7-rt-amd64.
Are you using the 5.18+ patch?
#12
Adding PhilippeBekaert#14
b51581d
No branches or pull requests
Tested with the current debian testing.
The text was updated successfully, but these errors were encountered: