Skip to content

Commit 0262179

Browse files
Jay Fangbroonie
Jay Fang
authored andcommitted
spi: rockchip: Fix code indent should use tabs where possible
Fix checkpatch errors: ERROR: code indent should use tabs where possible torvalds#484: FILE: spi-rockchip.c:484: +^I | CR0_BHT_8BIT << CR0_BHT_OFFSET$ ERROR: code indent should use tabs where possible torvalds#485: FILE: spi-rockchip.c:485: +^I | CR0_SSD_ONE << CR0_SSD_OFFSET$ ERROR: code indent should use tabs where possible torvalds#486: FILE: spi-rockchip.c:486: +^I | CR0_EM_BIG << CR0_EM_OFFSET;$ Signed-off-by: Jay Fang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent 6ca6ad9 commit 0262179

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/spi/spi-rockchip.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,9 +481,9 @@ static int rockchip_spi_config(struct rockchip_spi *rs,
481481
bool use_dma, bool slave_mode)
482482
{
483483
u32 cr0 = CR0_FRF_SPI << CR0_FRF_OFFSET
484-
| CR0_BHT_8BIT << CR0_BHT_OFFSET
485-
| CR0_SSD_ONE << CR0_SSD_OFFSET
486-
| CR0_EM_BIG << CR0_EM_OFFSET;
484+
| CR0_BHT_8BIT << CR0_BHT_OFFSET
485+
| CR0_SSD_ONE << CR0_SSD_OFFSET
486+
| CR0_EM_BIG << CR0_EM_OFFSET;
487487
u32 cr1;
488488
u32 dmacr = 0;
489489

0 commit comments

Comments
 (0)