diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-11-05 16:18:51 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-11-06 15:47:43 +0100 |
commit | 3ca5fc0664ec47fae86bc07749ceb185f7b175f6 (patch) | |
tree | 599e5a1e85023789e4249a9c49d7cba55e8b2a26 /sound/aoa/soundbus/i2sbus/pcm.c | |
parent | 16ccca11088c1bdd9311a2c630b453541305c48a (diff) | |
download | blackbird-op-linux-3ca5fc0664ec47fae86bc07749ceb185f7b175f6.tar.gz blackbird-op-linux-3ca5fc0664ec47fae86bc07749ceb185f7b175f6.zip |
ALSA: aoa: Avoid non-standard macro usage
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>
Diffstat (limited to 'sound/aoa/soundbus/i2sbus/pcm.c')
-rw-r--r-- | sound/aoa/soundbus/i2sbus/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/aoa/soundbus/i2sbus/pcm.c b/sound/aoa/soundbus/i2sbus/pcm.c index 7f0754dd3d7d..a94e4023fadf 100644 --- a/sound/aoa/soundbus/i2sbus/pcm.c +++ b/sound/aoa/soundbus/i2sbus/pcm.c @@ -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; |