Commit 5630945e authored by David S. Miller's avatar David S. Miller

[SOUND]: Fix build of SBUS code in memalloc.c.

parent 582a045d
...@@ -138,7 +138,7 @@ int snd_dma_alloc_pages(const struct snd_dma_device *dev, size_t size, ...@@ -138,7 +138,7 @@ int snd_dma_alloc_pages(const struct snd_dma_device *dev, size_t size,
#endif #endif
#ifdef CONFIG_SBUS #ifdef CONFIG_SBUS
case SNDRV_DMA_TYPE_SBUS: case SNDRV_DMA_TYPE_SBUS:
dmab->area = snd_malloc_pci_pages(dev->dev.sbus, size, &dmab->addr); dmab->area = snd_malloc_sbus_pages(dev->dev.sbus, size, &dmab->addr);
break; break;
#endif #endif
default: default:
...@@ -181,7 +181,7 @@ void snd_dma_free_pages(const struct snd_dma_device *dev, struct snd_dma_buffer ...@@ -181,7 +181,7 @@ void snd_dma_free_pages(const struct snd_dma_device *dev, struct snd_dma_buffer
#endif #endif
#ifdef CONFIG_SBUS #ifdef CONFIG_SBUS
case SNDRV_DMA_TYPE_SBUS: case SNDRV_DMA_TYPE_SBUS:
snd_free_sbus_pages(dev->dev.sbus, dmab->size, dmab->are, dmab->addr); snd_free_sbus_pages(dev->dev.sbus, dmab->bytes, dmab->area, dmab->addr);
break; break;
#endif #endif
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment