Re: [PATCH] soc: ti: knav_qmss_queue: remove useless statement

From: Shuah Khan
Date: Tue Sep 24 2024 - 12:20:33 EST


On 9/24/24 07:20, Alessandro Zanni wrote:
Remove the statement "continue" at the end of the loop where it
becomes useless.

How did you find the problem? Change log should say how you found
it.


Signed-off-by: Alessandro Zanni <alessandro.zanni87@xxxxxxxxx>
---
drivers/soc/ti/knav_qmss_queue.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/soc/ti/knav_qmss_queue.c b/drivers/soc/ti/knav_qmss_queue.c
index 6c98738e548a..1cc54905b398 100644
--- a/drivers/soc/ti/knav_qmss_queue.c
+++ b/drivers/soc/ti/knav_qmss_queue.c
@@ -723,7 +723,6 @@ static void kdesc_empty_pool(struct knav_pool *pool)
if (!desc) {
dev_dbg(pool->kdev->dev,
"couldn't unmap desc, continuing\n");
- continue;
}
}
WARN_ON(i != pool->num_desc);

thanks,
-- Shuah