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

x86/lib: Fix indentation issue, remove extra tab

The increment of buff is indented one level too deeply, clean
this up by removing a tab.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Borislav Petkov <bp@alien8.de>
Cc: "H . Peter Anvin" <hpa@zytor.com>
Cc: kernel-janitors@vger.kernel.org
Link: https://lkml.kernel.org/r/20190314230838.18256-1-colin.king@canonical.com

authored by

Colin Ian King and committed by
Thomas Gleixner
725e29db a9c640ac

+1 -1
+1 -1
arch/x86/lib/csum-partial_64.c
··· 94 94 : "m" (*(unsigned long *)buff), 95 95 "r" (zero), "0" (result)); 96 96 --count; 97 - buff += 8; 97 + buff += 8; 98 98 } 99 99 result = add32_with_carry(result>>32, 100 100 result&0xffffffff);