Eliminate the follow smatch warning: drivers/block/paride/fit3.c:75 fit3_read_regr() warn: inconsistent indenting. Reported-by: Abaci Robot <abaci@xxxxxxxxxxxxxxxxx> Signed-off-by: Jiapeng Chong <jiapeng.chong@xxxxxxxxxxxxxxxxx> --- drivers/block/paride/fit3.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/block/paride/fit3.c b/drivers/block/paride/fit3.c index 275d269458eb..05bc664829fb 100644 --- a/drivers/block/paride/fit3.c +++ b/drivers/block/paride/fit3.c @@ -60,12 +60,13 @@ static void fit3_write_regr( PIA *pi, int cont, int regr, int val) } static int fit3_read_regr( PIA *pi, int cont, int regr ) - -{ int a, b; +{ + int a, b; if (cont) { - if (regr != 6) return 0xff; - regr = 7; + if (regr != 6) + return 0xff; + regr = 7; } switch (pi->mode) { @@ -88,8 +89,8 @@ static int fit3_read_regr( PIA *pi, int cont, int regr ) return a; } - return -1; + return -1; } static void fit3_read_block( PIA *pi, char * buf, int count ) -- 2.20.1.7.g153144c