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

dmaengine: imx-sdma: clean up some inconsistent indenting

Eliminate the following coccicheck warning:
./drivers/dma/imx-sdma.c:896:3-16: code aligned with following code on
line 897

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/20220217011604.123106-1-yang.lee@linux.alibaba.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Yang Li and committed by
Vinod Koul
fb7a444a d143f939

+2 -2
+2 -2
drivers/dma/imx-sdma.c
··· 892 892 for (i = 0; i < sdmac->desc->num_bd; i++) { 893 893 bd = &sdmac->desc->bd[i]; 894 894 895 - if (bd->mode.status & (BD_DONE | BD_RROR)) 895 + if (bd->mode.status & (BD_DONE | BD_RROR)) 896 896 error = -EIO; 897 - sdmac->desc->chn_real_count += bd->mode.count; 897 + sdmac->desc->chn_real_count += bd->mode.count; 898 898 } 899 899 900 900 if (error)