Message ID | 20220516084139.8864-2-wanjiabing@vivo.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | dmaengine: Remove unneeded ERROR checks before clk_xxx | expand |
On 16/05/2022 10:41, Wan Jiabing wrote: > clk_put() already uses !clk and IS_ERR(clk) to check ERROR or NULL. > Remove unneeded ERROR or NULL check for edmac->clk. > > Signed-off-by: Wan Jiabing <wanjiabing@vivo.com> > --- > drivers/dma/ep93xx_dma.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/dma/ep93xx_dma.c b/drivers/dma/ep93xx_dma.c > index 971ff5f9ae84..60dc7b3f3d0d 100644 > --- a/drivers/dma/ep93xx_dma.c > +++ b/drivers/dma/ep93xx_dma.c > @@ -1398,8 +1398,7 @@ static int __init ep93xx_dma_probe(struct platform_device *pdev) > if (unlikely(ret)) { > for (i = 0; i < edma->num_channels; i++) { > struct ep93xx_dma_chan *edmac = &edma->channels[i]; > - if (!IS_ERR_OR_NULL(edmac->clk)) > - clk_put(edmac->clk); > + clk_put(edmac->clk); clk_put() which calls __clk_put() seems to print warning on IS_ERR, so this does not look equivalent code. Best regards, Krzysztof
diff --git a/drivers/dma/ep93xx_dma.c b/drivers/dma/ep93xx_dma.c index 971ff5f9ae84..60dc7b3f3d0d 100644 --- a/drivers/dma/ep93xx_dma.c +++ b/drivers/dma/ep93xx_dma.c @@ -1398,8 +1398,7 @@ static int __init ep93xx_dma_probe(struct platform_device *pdev) if (unlikely(ret)) { for (i = 0; i < edma->num_channels; i++) { struct ep93xx_dma_chan *edmac = &edma->channels[i]; - if (!IS_ERR_OR_NULL(edmac->clk)) - clk_put(edmac->clk); + clk_put(edmac->clk); } kfree(edma); } else {
clk_put() already uses !clk and IS_ERR(clk) to check ERROR or NULL. Remove unneeded ERROR or NULL check for edmac->clk. Signed-off-by: Wan Jiabing <wanjiabing@vivo.com> --- drivers/dma/ep93xx_dma.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)