aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sk_mca.c
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2006-09-13 13:24:59 -0400
committerJeff Garzik <jeff@garzik.org>2006-09-13 13:24:59 -0400
commit6aa20a2235535605db6d6d2bd850298b2fe7f31e (patch)
treedf0b855043407b831d57f2f2c271f8aab48444f4 /drivers/net/sk_mca.c
parent7a291083225af6e22ffaa46b3d91cfc1a1ccaab4 (diff)
drivers/net: Trim trailing whitespace
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/sk_mca.c')
-rw-r--r--drivers/net/sk_mca.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/sk_mca.c b/drivers/net/sk_mca.c
index 799e0980193..37b88da1abe 100644
--- a/drivers/net/sk_mca.c
+++ b/drivers/net/sk_mca.c
@@ -1,4 +1,4 @@
1/* 1/*
2net-3-driver for the SKNET MCA-based cards 2net-3-driver for the SKNET MCA-based cards
3 3
4This is an extension to the Linux operating system, and is covered by the 4This is an extension to the Linux operating system, and is covered by the
@@ -10,9 +10,9 @@ Copyright 1999 by Alfred Arnold (alfred@ccac.rwth-aachen.de,
10This driver is based both on the 3C523 driver and the SK_G16 driver. 10This driver is based both on the 3C523 driver and the SK_G16 driver.
11 11
12paper sources: 12paper sources:
13 'PC Hardware: Aufbau, Funktionsweise, Programmierung' by 13 'PC Hardware: Aufbau, Funktionsweise, Programmierung' by
14 Hans-Peter Messmer for the basic Microchannel stuff 14 Hans-Peter Messmer for the basic Microchannel stuff
15 15
16 'Linux Geraetetreiber' by Allesandro Rubini, Kalle Dalheimer 16 'Linux Geraetetreiber' by Allesandro Rubini, Kalle Dalheimer
17 for help on Ethernet driver programming 17 for help on Ethernet driver programming
18 18
@@ -24,7 +24,7 @@ paper sources:
24 24
25 'SK-NET MC2+ Technical Manual", Version 1.1 by Schneider&Koch for 25 'SK-NET MC2+ Technical Manual", Version 1.1 by Schneider&Koch for
26 documentation on the MC2 bord 26 documentation on the MC2 bord
27 27
28 A big thank you to the S&K support for providing me so quickly with 28 A big thank you to the S&K support for providing me so quickly with
29 documentation! 29 documentation!
30 30
@@ -34,7 +34,7 @@ paper sources:
34 34
35 -> set debug level via ioctl instead of compile-time switches 35 -> set debug level via ioctl instead of compile-time switches
36 -> I didn't follow the development of the 2.1.x kernels, so my 36 -> I didn't follow the development of the 2.1.x kernels, so my
37 assumptions about which things changed with which kernel version 37 assumptions about which things changed with which kernel version
38 are probably nonsense 38 are probably nonsense
39 39
40History: 40History:
@@ -57,7 +57,7 @@ History:
57 fixed problem in GetLANCE leaving interrupts turned off 57 fixed problem in GetLANCE leaving interrupts turned off
58 increase TX queue to 4 packets to improve send performance 58 increase TX queue to 4 packets to improve send performance
59 May 29th, 1999 59 May 29th, 1999
60 a few corrections in statistics, caught rcvr overruns 60 a few corrections in statistics, caught rcvr overruns
61 reinitialization of LANCE/board in critical situations 61 reinitialization of LANCE/board in critical situations
62 MCA info implemented 62 MCA info implemented
63 implemented LANCE multicast filter 63 implemented LANCE multicast filter
@@ -427,7 +427,7 @@ static void InitLANCE(struct net_device *dev)
427 InitDscrs(dev); 427 InitDscrs(dev);
428 428
429 /* next RX descriptor to be read is the first one. Since the LANCE 429 /* next RX descriptor to be read is the first one. Since the LANCE
430 will start from the beginning after initialization, we have to 430 will start from the beginning after initialization, we have to
431 reset out pointers too. */ 431 reset out pointers too. */
432 432
433 priv->nextrx = 0; 433 priv->nextrx = 0;
@@ -868,7 +868,7 @@ static int skmca_tx(struct sk_buff *skb, struct net_device *dev)
868 int tmplen, retval = 0; 868 int tmplen, retval = 0;
869 unsigned long flags; 869 unsigned long flags;
870 870
871 /* if we get called with a NULL descriptor, the Ethernet layer thinks 871 /* if we get called with a NULL descriptor, the Ethernet layer thinks
872 our card is stuck an we should reset it. We'll do this completely: */ 872 our card is stuck an we should reset it. We'll do this completely: */
873 873
874 if (skb == NULL) { 874 if (skb == NULL) {
@@ -896,7 +896,7 @@ static int skmca_tx(struct sk_buff *skb, struct net_device *dev)
896 tmplen = 60; 896 tmplen = 60;
897 descr.Len = 65536 - tmplen; 897 descr.Len = 65536 - tmplen;
898 898
899 /* copy filler into RAM - in case we're filling up... 899 /* copy filler into RAM - in case we're filling up...
900 we're filling a bit more than necessary, but that doesn't harm 900 we're filling a bit more than necessary, but that doesn't harm
901 since the buffer is far larger... */ 901 since the buffer is far larger... */
902 if (tmplen > skb->len) { 902 if (tmplen > skb->len) {