ALSA: aoa: Avoid non-standard macro usage
authorTakashi Iwai <tiwai@suse.de>
Tue, 5 Nov 2019 15:18:51 +0000 (16:18 +0100)
committerTakashi Iwai <tiwai@suse.de>
Wed, 6 Nov 2019 14:47:43 +0000 (15:47 +0100)
Pass the device pointer from the PCI pointer directly, instead of a
non-standard macro.  The macro didn't give any better readability.

Link: https://lore.kernel.org/r/20191105151856.10785-20-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/aoa/soundbus/i2sbus/pcm.c

index 7f0754dd3d7db2311ed078c1f6e9c1dbf20abbc7..a94e4023fadf8d1e21f35781c38ca469575a2247 100644 (file)
@@ -1028,7 +1028,7 @@ i2sbus_attach_codec(struct soundbus_dev *dev, struct snd_card *card,
        /* well, we really should support scatter/gather DMA */
        snd_pcm_lib_preallocate_pages_for_all(
                dev->pcm, SNDRV_DMA_TYPE_DEV,
-               snd_dma_pci_data(macio_get_pci_dev(i2sdev->macio)),
+               &macio_get_pci_dev(i2sdev->macio)->dev,
                64 * 1024, 64 * 1024);
 
        return 0;