diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2025-02-05 16:57:10 +0200 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2025-02-10 16:28:53 +0530 |
commit | 1c83d3dfa0905590408595560629627cba4f9261 (patch) | |
tree | 3ac2df69dc08341ae0a7809d8fed3a053e26f1d7 | |
parent | 31d43141d13aa63587f140884b1f667800ce4e1d (diff) |
dmaengine: Use dma_request_channel() instead of __dma_request_channel()
Reduce use of internal __dma_request_channel() function in public
dmaengine.h.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20250205145757.889247-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
-rw-r--r-- | include/linux/dmaengine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 83cbf7197a76..a360e0330436 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h @@ -1646,7 +1646,7 @@ static inline struct dma_chan if (!fn || !fn_param) return NULL; - return __dma_request_channel(&mask, fn, fn_param, NULL); + return dma_request_channel(mask, fn, fn_param); } static inline char * |