Commit bf53445d authored by Hui Tang's avatar Hui Tang Committed by David S. Miller

net: seeq: 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: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: default avatarHui Tang <tanghui20@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f95a73a8
...@@ -617,7 +617,7 @@ if (next_ptr < RX_START || next_ptr >= RX_END) { ...@@ -617,7 +617,7 @@ if (next_ptr < RX_START || next_ptr >= RX_END) {
break; break;
} }
/* /*
* ignore our own packets... * ignore our own packets...
*/ */
if (!(*(unsigned long *)&dev->dev_addr[0] ^ *(unsigned long *)&addrs[2+6]) && if (!(*(unsigned long *)&dev->dev_addr[0] ^ *(unsigned long *)&addrs[2+6]) &&
!(*(unsigned short *)&dev->dev_addr[4] ^ *(unsigned short *)&addrs[2+10])) { !(*(unsigned short *)&dev->dev_addr[4] ^ *(unsigned short *)&addrs[2+10])) {
...@@ -672,7 +672,7 @@ if (next_ptr < RX_START || next_ptr >= RX_END) { ...@@ -672,7 +672,7 @@ if (next_ptr < RX_START || next_ptr >= RX_END) {
*/ */
if (!(ether3_inw(REG_STATUS) & STAT_RXON)) { if (!(ether3_inw(REG_STATUS) & STAT_RXON)) {
dev->stats.rx_dropped++; dev->stats.rx_dropped++;
ether3_outw(next_ptr, REG_RECVPTR); ether3_outw(next_ptr, REG_RECVPTR);
ether3_outw(priv(dev)->regs.command | CMD_RXON, REG_COMMAND); ether3_outw(priv(dev)->regs.command | CMD_RXON, REG_COMMAND);
} }
...@@ -690,11 +690,11 @@ static void ether3_tx(struct net_device *dev) ...@@ -690,11 +690,11 @@ static void ether3_tx(struct net_device *dev)
do { do {
unsigned long status; unsigned long status;
/* /*
* Read the packet header * Read the packet header
*/ */
ether3_setbuffer(dev, buffer_read, tx_tail * 0x600); ether3_setbuffer(dev, buffer_read, tx_tail * 0x600);
status = ether3_readlong(dev); status = ether3_readlong(dev);
/* /*
* Check to see if this packet has been transmitted * Check to see if this packet has been transmitted
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment