diff mbox series

dmaengine: ppc4xx: Make use of the helper macro LIST_HEAD()

Message ID 20220209032221.37211-1-cai.huoqing@linux.dev (mailing list archive)
State Accepted
Commit 417c7d0dba8b69a42cec800244eb5ac87129353d
Headers show
Series dmaengine: ppc4xx: Make use of the helper macro LIST_HEAD() | expand

Commit Message

Cai Huoqing Feb. 9, 2022, 3:22 a.m. UTC
Replace "struct list_head head = LIST_HEAD_INIT(head)" with
"LIST_HEAD(head)" to simplify the code.

Signed-off-by: Cai Huoqing <cai.huoqing@linux.dev>
---
 drivers/dma/ppc4xx/adma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vinod Koul March 11, 2022, 10:09 a.m. UTC | #1
On 09-02-22, 11:22, Cai Huoqing wrote:
> Replace "struct list_head head = LIST_HEAD_INIT(head)" with
> "LIST_HEAD(head)" to simplify the code.

Applied, thanks
diff mbox series

Patch

diff --git a/drivers/dma/ppc4xx/adma.c b/drivers/dma/ppc4xx/adma.c
index 5e46e347e28b..6b5e91f26afc 100644
--- a/drivers/dma/ppc4xx/adma.c
+++ b/drivers/dma/ppc4xx/adma.c
@@ -1686,8 +1686,8 @@  static struct ppc440spe_adma_desc_slot *ppc440spe_adma_alloc_slots(
 {
 	struct ppc440spe_adma_desc_slot *iter = NULL, *_iter;
 	struct ppc440spe_adma_desc_slot *alloc_start = NULL;
-	struct list_head chain = LIST_HEAD_INIT(chain);
 	int slots_found, retry = 0;
+	LIST_HEAD(chain);
 
 
 	BUG_ON(!num_slots || !slots_per_op);