* [PATCH] ALSA: emu10k1: Use dma_set_mask_and_coherent to simplify code
@ 2020-11-21 8:16 Christophe JAILLET
2020-11-21 8:26 ` Takashi Iwai
0 siblings, 1 reply; 2+ messages in thread
From: Christophe JAILLET @ 2020-11-21 8:16 UTC (permalink / raw)
To: perex, tiwai, dan.carpenter
Cc: alsa-devel, linux-kernel, kernel-janitors, Christophe JAILLET
'pci_set_dma_mask()' + 'pci_set_consistent_dma_mask()' can be replaced by
an equivalent 'dma_set_mask_and_coherent()' which is much less verbose.
With at it replace the 'card->dev' parameter passed to a 'dev_err()' call
by an equivalent '&pci->dev' which is more consistent with the test just
one line above.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
sound/pci/emu10k1/emu10k1x.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sound/pci/emu10k1/emu10k1x.c b/sound/pci/emu10k1/emu10k1x.c
index def8161cde4c..f2b6fd434474 100644
--- a/sound/pci/emu10k1/emu10k1x.c
+++ b/sound/pci/emu10k1/emu10k1x.c
@@ -894,9 +894,9 @@ static int snd_emu10k1x_create(struct snd_card *card,
if ((err = pci_enable_device(pci)) < 0)
return err;
- if (pci_set_dma_mask(pci, DMA_BIT_MASK(28)) < 0 ||
- pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(28)) < 0) {
- dev_err(card->dev, "error to set 28bit mask DMA\n");
+
+ if (dma_set_mask_and_coherent(&pci->dev, DMA_BIT_MASK(28)) < 0) {
+ dev_err(&pci->dev, "error to set 28bit mask DMA\n");
pci_disable_device(pci);
return -ENXIO;
}
--
2.27.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ALSA: emu10k1: Use dma_set_mask_and_coherent to simplify code
2020-11-21 8:16 [PATCH] ALSA: emu10k1: Use dma_set_mask_and_coherent to simplify code Christophe JAILLET
@ 2020-11-21 8:26 ` Takashi Iwai
0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2020-11-21 8:26 UTC (permalink / raw)
To: Christophe JAILLET
Cc: perex, tiwai, dan.carpenter, alsa-devel, linux-kernel, kernel-janitors
On Sat, 21 Nov 2020 09:16:32 +0100,
Christophe JAILLET wrote:
>
> 'pci_set_dma_mask()' + 'pci_set_consistent_dma_mask()' can be replaced by
> an equivalent 'dma_set_mask_and_coherent()' which is much less verbose.
It's a good cleanup, but ...
> With at it replace the 'card->dev' parameter passed to a 'dev_err()' call
> by an equivalent '&pci->dev' which is more consistent with the test just
> one line above.
... this will make it inconsistent with other error message lines in
the same function, OTOH. So I don't think this part necessary to be
changed.
thanks,
Takashi
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-11-21 8:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-21 8:16 [PATCH] ALSA: emu10k1: Use dma_set_mask_and_coherent to simplify code Christophe JAILLET
2020-11-21 8:26 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®