diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-01-21 10:33:09 +0100 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-01-21 15:05:28 +0530 |
commit | 69b1189ba2cd6643474312004f10685324e38f58 (patch) | |
tree | 546e348344b97bc0502656c575b1e24db2bf78b1 /drivers/dma | |
parent | d00fdf694b11f53f25b243bcbdb850e7c369a7d0 (diff) | |
download | linux-69b1189ba2cd6643474312004f10685324e38f58.tar.gz linux-69b1189ba2cd6643474312004f10685324e38f58.tar.bz2 linux-69b1189ba2cd6643474312004f10685324e38f58.zip |
dmaengine: Remove dma_device_satisfies_mask() wrapper
Commit aa1e6f1a385eb2b0 ("dmaengine: kill struct dma_client and
supporting infrastructure") removed the last user of the
dma_device_satisfies_mask() wrapper.
Remove the wrapper, and rename __dma_device_satisfies_mask() to
dma_device_satisfies_mask(), to get rid of one more function starting
with a double underscore.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20200121093311.28639-2-geert+renesas@glider.be
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/dmaengine.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index 158aeb1b6a8a..7550dbdf5488 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c @@ -308,11 +308,8 @@ static void dma_channel_rebalance(void) } } -#define dma_device_satisfies_mask(device, mask) \ - __dma_device_satisfies_mask((device), &(mask)) -static int -__dma_device_satisfies_mask(struct dma_device *device, - const dma_cap_mask_t *want) +static int dma_device_satisfies_mask(struct dma_device *device, + const dma_cap_mask_t *want) { dma_cap_mask_t has; @@ -531,7 +528,7 @@ static struct dma_chan *private_candidate(const dma_cap_mask_t *mask, { struct dma_chan *chan; - if (mask && !__dma_device_satisfies_mask(dev, mask)) { + if (mask && !dma_device_satisfies_mask(dev, mask)) { dev_dbg(dev->dev, "%s: wrong capabilities\n", __func__); return NULL; } |