Skip to content

Commit

Permalink
net: fealnx: remove leading spaces before tabs
Browse files Browse the repository at this point in the history
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/'

Signed-off-by: Hui Tang <tanghui20@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Hui Tang authored and David S. Miller committed May 19, 2021
1 parent b54f440 commit d1e4916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/fealnx.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ struct chip_info {
};

static const struct chip_info skel_netdrv_tbl[] = {
{ "100/10M Ethernet PCI Adapter", HAS_MII_XCVR },
{ "100/10M Ethernet PCI Adapter", HAS_MII_XCVR },
{ "100/10M Ethernet PCI Adapter", HAS_CHIP_XCVR },
{ "1000/100/10M Ethernet PCI Adapter", HAS_MII_XCVR },
};
Expand Down

0 comments on commit d1e4916

Please sign in to comment.