Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dmaengine: zynqmp_dma: Remove redundant pm_runtime_mark_last_busy() calls

pm_runtime_put_autosuspend(), pm_runtime_put_sync_autosuspend(),
pm_runtime_autosuspend() and pm_request_autosuspend() now include a call
to pm_runtime_mark_last_busy(). Remove the now-reduntant explicit call to
pm_runtime_mark_last_busy().

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Abin Joseph <abin.joseph@amd.com>
Link: https://patch.msgid.link/20251027133232.392898-6-sakari.ailus@linux.intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Sakari Ailus and committed by
Vinod Koul
3b812352 35d522a9

-2
-2
drivers/dma/xilinx/zynqmp_dma.c
··· 695 695 (2 * ZYNQMP_DMA_DESC_SIZE(chan) * ZYNQMP_DMA_NUM_DESCS), 696 696 chan->desc_pool_v, chan->desc_pool_p); 697 697 kfree(chan->sw_desc_pool); 698 - pm_runtime_mark_last_busy(chan->dev); 699 698 pm_runtime_put_autosuspend(chan->dev); 700 699 } 701 700 ··· 1144 1145 goto free_chan_resources; 1145 1146 } 1146 1147 1147 - pm_runtime_mark_last_busy(zdev->dev); 1148 1148 pm_runtime_put_sync_autosuspend(zdev->dev); 1149 1149 1150 1150 return 0;