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

net: alteon: remove leading spaces before tabs

There are a few leading spaces before tabs and remove it by running the
following commard:

$ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/'
$ find . -name '*.h' | xargs sed -r -i 's/^[ ]+\t/\t/'

Cc: Jes Sorensen <jes@trained-monkey.org>
Signed-off-by: Hui Tang <tanghui20@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Hui Tang and committed by
David S. Miller
40b1f926 959dc069

+13 -13
+13 -13
drivers/net/ethernet/alteon/acenic.c
··· 1883 1883 } 1884 1884 } 1885 1885 1886 - if (ACE_IS_TIGON_I(ap)) { 1887 - struct cmd cmd; 1888 - cmd.evt = C_SET_RX_JUMBO_PRD_IDX; 1889 - cmd.code = 0; 1890 - cmd.idx = 0; 1891 - ace_issue_cmd(ap->regs, &cmd); 1892 - } else { 1893 - writel(0, &((ap->regs)->RxJumboPrd)); 1894 - wmb(); 1895 - } 1886 + if (ACE_IS_TIGON_I(ap)) { 1887 + struct cmd cmd; 1888 + cmd.evt = C_SET_RX_JUMBO_PRD_IDX; 1889 + cmd.code = 0; 1890 + cmd.idx = 0; 1891 + ace_issue_cmd(ap->regs, &cmd); 1892 + } else { 1893 + writel(0, &((ap->regs)->RxJumboPrd)); 1894 + wmb(); 1895 + } 1896 1896 1897 1897 ap->jumbo = 0; 1898 1898 ap->rx_jumbo_skbprd = 0; ··· 2489 2489 } 2490 2490 } 2491 2491 2492 - wmb(); 2493 - ap->tx_prd = idx; 2494 - ace_set_txprd(regs, ap, idx); 2492 + wmb(); 2493 + ap->tx_prd = idx; 2494 + ace_set_txprd(regs, ap, idx); 2495 2495 2496 2496 if (flagsize & BD_FLG_COAL_NOW) { 2497 2497 netif_stop_queue(dev);