Eliminate the follow smatch warning: drivers/block/paride/bpck.c:66 bpck_read_regr() warn: inconsistent indenting. drivers/block/paride/bpck.c:294 bpck_test_proto() warn: inconsistent indenting. Reported-by: Abaci Robot <abaci@xxxxxxxxxxxxxxxxx> Signed-off-by: Jiapeng Chong <jiapeng.chong@xxxxxxxxxxxxxxxxx> --- drivers/block/paride/bpck.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/block/paride/bpck.c b/drivers/block/paride/bpck.c index d880a9465e9b..e7f97620fb63 100644 --- a/drivers/block/paride/bpck.c +++ b/drivers/block/paride/bpck.c @@ -55,16 +55,16 @@ static int bpck_read_regr( PIA *pi, int cont, int regr ) switch (pi->mode) { case 0: w0(r & 0xf); w0(r); t2(2); t2(4); - l = r1(); - t2(4); - h = r1(); - return j44(l,h); + l = r1(); + t2(4); + h = r1(); + return j44(l, h); case 1: w0(r & 0xf); w0(r); t2(2); - e2(); t2(0x20); + e2(); t2(0x20); t2(4); h = r0(); - t2(1); t2(0x20); - return h; + t2(1); t2(0x20); + return h; case 2: case 3: @@ -289,9 +289,9 @@ static int bpck_test_proto( PIA *pi, char * scratch, int verbose ) WR(0x13,0x7f); w0(0x13); t2(2); for(i=0;i<TEST_LEN;i++) { - t2(4); l = r1(); - t2(4); h = r1(); - buf[i] = j44(l,h); + t2(4); l = r1(); + t2(4); h = r1(); + buf[i] = j44(l, h); } bpck_disconnect(pi); break; -- 2.20.1.7.g153144c