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

Staging: qlge: Fix indentation in conditional statement

Add tabs/spaces in conditional statements in to fix the
indentation.

Signed-off-by: Sumitra Sharma <sumitraartsy@gmail.com>
Reviewed-by: Dan Carpenter <error27@gmail.com>
Link: https://lore.kernel.org/r/20230314121152.GA38979@sumitra.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Sumitra Sharma and committed by
Greg Kroah-Hartman
f20eed8b 73633855

+16 -19
+16 -19
drivers/staging/qlge/qlge_dbg.c
··· 351 351 /* We're reading 400 xgmac registers, but we filter out 352 352 * several locations that are non-responsive to reads. 353 353 */ 354 - if ((i == 0x00000114) || 355 - (i == 0x00000118) || 356 - (i == 0x0000013c) || 357 - (i == 0x00000140) || 358 - (i > 0x00000150 && i < 0x000001fc) || 359 - (i > 0x00000278 && i < 0x000002a0) || 360 - (i > 0x000002c0 && i < 0x000002cf) || 361 - (i > 0x000002dc && i < 0x000002f0) || 362 - (i > 0x000003c8 && i < 0x00000400) || 363 - (i > 0x00000400 && i < 0x00000410) || 364 - (i > 0x00000410 && i < 0x00000420) || 365 - (i > 0x00000420 && i < 0x00000430) || 366 - (i > 0x00000430 && i < 0x00000440) || 367 - (i > 0x00000440 && i < 0x00000450) || 368 - (i > 0x00000450 && i < 0x00000500) || 369 - (i > 0x0000054c && i < 0x00000568) || 370 - (i > 0x000005c8 && i < 0x00000600)) { 354 + if ((i == 0x00000114) || (i == 0x00000118) || 355 + (i == 0x0000013c) || (i == 0x00000140) || 356 + (i > 0x00000150 && i < 0x000001fc) || 357 + (i > 0x00000278 && i < 0x000002a0) || 358 + (i > 0x000002c0 && i < 0x000002cf) || 359 + (i > 0x000002dc && i < 0x000002f0) || 360 + (i > 0x000003c8 && i < 0x00000400) || 361 + (i > 0x00000400 && i < 0x00000410) || 362 + (i > 0x00000410 && i < 0x00000420) || 363 + (i > 0x00000420 && i < 0x00000430) || 364 + (i > 0x00000430 && i < 0x00000440) || 365 + (i > 0x00000440 && i < 0x00000450) || 366 + (i > 0x00000450 && i < 0x00000500) || 367 + (i > 0x0000054c && i < 0x00000568) || 368 + (i > 0x000005c8 && i < 0x00000600)) { 371 369 if (other_function) 372 - status = 373 - qlge_read_other_func_xgmac_reg(qdev, i, buf); 370 + status = qlge_read_other_func_xgmac_reg(qdev, i, buf); 374 371 else 375 372 status = qlge_read_xgmac_reg(qdev, i, buf); 376 373