diff options
author | Joe Perches <joe@perches.com> | 2011-03-01 01:56:32 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-03 16:02:30 -0500 |
commit | a576cd8700271273a572976df4f06db44a0652f3 (patch) | |
tree | 24dbe3dea14a518363a019f7eed228701cdcb8a4 | |
parent | 1829b086d175ba07a01ff6934fd51a59bc9be4ce (diff) |
tlan: Remove changelog
As it isn't necessary nor really useful any longer.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/tlan.c | 145 |
1 files changed, 0 insertions, 145 deletions
diff --git a/drivers/net/tlan.c b/drivers/net/tlan.c index e48a80885343..7721e6cf96f8 100644 --- a/drivers/net/tlan.c +++ b/drivers/net/tlan.c | |||
@@ -25,151 +25,6 @@ | |||
25 | * Microchip Technology, 24C01A/02A/04A Data Sheet | 25 | * Microchip Technology, 24C01A/02A/04A Data Sheet |
26 | * available in PDF format from www.microchip.com | 26 | * available in PDF format from www.microchip.com |
27 | * | 27 | * |
28 | * Change History | ||
29 | * | ||
30 | * Tigran Aivazian <tigran@sco.com>: TLan_PciProbe() now uses | ||
31 | * new PCI BIOS interface. | ||
32 | * Alan Cox <alan@lxorguk.ukuu.org.uk>: | ||
33 | * Fixed the out of memory | ||
34 | * handling. | ||
35 | * | ||
36 | * Torben Mathiasen <torben.mathiasen@compaq.com> New Maintainer! | ||
37 | * | ||
38 | * v1.1 Dec 20, 1999 - Removed linux version checking | ||
39 | * Patch from Tigran Aivazian. | ||
40 | * - v1.1 includes Alan's SMP updates. | ||
41 | * - We still have problems on SMP though, | ||
42 | * but I'm looking into that. | ||
43 | * | ||
44 | * v1.2 Jan 02, 2000 - Hopefully fixed the SMP deadlock. | ||
45 | * - Removed dependency of HZ being 100. | ||
46 | * - We now allow higher priority timers to | ||
47 | * overwrite timers like TLAN_TIMER_ACTIVITY | ||
48 | * Patch from John Cagle <john.cagle@compaq.com>. | ||
49 | * - Fixed a few compiler warnings. | ||
50 | * | ||
51 | * v1.3 Feb 04, 2000 - Fixed the remaining HZ issues. | ||
52 | * - Removed call to pci_present(). | ||
53 | * - Removed SA_INTERRUPT flag from irq handler. | ||
54 | * - Added __init and __initdata to reduce resisdent | ||
55 | * code size. | ||
56 | * - Driver now uses module_init/module_exit. | ||
57 | * - Rewrote init_module and tlan_probe to | ||
58 | * share a lot more code. We now use tlan_probe | ||
59 | * with builtin and module driver. | ||
60 | * - Driver ported to new net API. | ||
61 | * - tlan.txt has been reworked to reflect current | ||
62 | * driver (almost) | ||
63 | * - Other minor stuff | ||
64 | * | ||
65 | * v1.4 Feb 10, 2000 - Updated with more changes required after Dave's | ||
66 | * network cleanup in 2.3.43pre7 (Tigran & myself) | ||
67 | * - Minor stuff. | ||
68 | * | ||
69 | * v1.5 March 22, 2000 - Fixed another timer bug that would hang the | ||
70 | * driver if no cable/link were present. | ||
71 | * - Cosmetic changes. | ||
72 | * - TODO: Port completely to new PCI/DMA API | ||
73 | * Auto-Neg fallback. | ||
74 | * | ||
75 | * v1.6 April 04, 2000 - Fixed driver support for kernel-parameters. | ||
76 | * Haven't tested it though, as the kernel support | ||
77 | * is currently broken (2.3.99p4p3). | ||
78 | * - Updated tlan.txt accordingly. | ||
79 | * - Adjusted minimum/maximum frame length. | ||
80 | * - There is now a TLAN website up at | ||
81 | * http://hp.sourceforge.net/ | ||
82 | * | ||
83 | * v1.7 April 07, 2000 - Started to implement custom ioctls. Driver now | ||
84 | * reports PHY information when used with Donald | ||
85 | * Beckers userspace MII diagnostics utility. | ||
86 | * | ||
87 | * v1.8 April 23, 2000 - Fixed support for forced speed/duplex settings. | ||
88 | * - Added link information to Auto-Neg and forced | ||
89 | * modes. When NIC operates with auto-neg the driver | ||
90 | * will report Link speed & duplex modes as well as | ||
91 | * link partner abilities. When forced link is used, | ||
92 | * the driver will report status of the established | ||
93 | * link. | ||
94 | * Please read tlan.txt for additional information. | ||
95 | * - Removed call to check_region(), and used | ||
96 | * return value of request_region() instead. | ||
97 | * | ||
98 | * v1.8a May 28, 2000 - Minor updates. | ||
99 | * | ||
100 | * v1.9 July 25, 2000 - Fixed a few remaining Full-Duplex issues. | ||
101 | * - Updated with timer fixes from Andrew Morton. | ||
102 | * - Fixed module race in TLan_Open. | ||
103 | * - Added routine to monitor PHY status. | ||
104 | * - Added activity led support for Proliant devices. | ||
105 | * | ||
106 | * v1.10 Aug 30, 2000 - Added support for EISA based tlan controllers | ||
107 | * like the Compaq NetFlex3/E. | ||
108 | * - Rewrote tlan_probe to better handle multiple | ||
109 | * bus probes. Probing and device setup is now | ||
110 | * done through TLan_Probe and TLan_init_one. Actual | ||
111 | * hardware probe is done with kernel API and | ||
112 | * TLan_EisaProbe. | ||
113 | * - Adjusted debug information for probing. | ||
114 | * - Fixed bug that would cause general debug | ||
115 | * information to be printed after driver removal. | ||
116 | * - Added transmit timeout handling. | ||
117 | * - Fixed OOM return values in tlan_probe. | ||
118 | * - Fixed possible mem leak in tlan_exit | ||
119 | * (now tlan_remove_one). | ||
120 | * - Fixed timer bug in TLan_phyMonitor. | ||
121 | * - This driver version is alpha quality, please | ||
122 | * send me any bug issues you may encounter. | ||
123 | * | ||
124 | * v1.11 Aug 31, 2000 - Do not try to register irq 0 if no irq line was | ||
125 | * set for EISA cards. | ||
126 | * - Added support for NetFlex3/E with nibble-rate | ||
127 | * 10Base-T PHY. This is untestet as I haven't got | ||
128 | * one of these cards. | ||
129 | * - Fixed timer being added twice. | ||
130 | * - Disabled PhyMonitoring by default as this is | ||
131 | * work in progress. Define MONITOR to enable it. | ||
132 | * - Now we don't display link info with PHYs that | ||
133 | * doesn't support it (level1). | ||
134 | * - Incresed tx_timeout beacuse of auto-neg. | ||
135 | * - Adjusted timers for forced speeds. | ||
136 | * | ||
137 | * v1.12 Oct 12, 2000 - Minor fixes (memleak, init, etc.) | ||
138 | * | ||
139 | * v1.13 Nov 28, 2000 - Stop flooding console with auto-neg issues | ||
140 | * when link can't be established. | ||
141 | * - Added the bbuf option as a kernel parameter. | ||
142 | * - Fixed ioaddr probe bug. | ||
143 | * - Fixed stupid deadlock with MII interrupts. | ||
144 | * - Added support for speed/duplex selection with | ||
145 | * multiple nics. | ||
146 | * - Added partly fix for TX Channel lockup with | ||
147 | * TLAN v1.0 silicon. This needs to be investigated | ||
148 | * further. | ||
149 | * | ||
150 | * v1.14 Dec 16, 2000 - Added support for servicing multiple frames per. | ||
151 | * interrupt. Thanks goes to | ||
152 | * Adam Keys <adam@ti.com> | ||
153 | * Denis Beaudoin <dbeaudoin@ti.com> | ||
154 | * for providing the patch. | ||
155 | * - Fixed auto-neg output when using multiple | ||
156 | * adapters. | ||
157 | * - Converted to use new taskq interface. | ||
158 | * | ||
159 | * v1.14a Jan 6, 2001 - Minor adjustments (spinlocks, etc.) | ||
160 | * | ||
161 | * Samuel Chessman <chessman@tux.org> New Maintainer! | ||
162 | * | ||
163 | * v1.15 Apr 4, 2002 - Correct operation when aui=1 to be | ||
164 | * 10T half duplex no loopback | ||
165 | * Thanks to Gunnar Eikman | ||
166 | * | ||
167 | * Sakari Ailus <sakari.ailus@iki.fi>: | ||
168 | * | ||
169 | * v1.15a Dec 15 2008 - Remove bbuf support, it doesn't work anyway. | ||
170 | * v1.16 Jan 6 2011 - Make checkpatch.pl happy. | ||
171 | * v1.17 Jan 6 2011 - Add suspend/resume support. | ||
172 | * | ||
173 | ******************************************************************************/ | 28 | ******************************************************************************/ |
174 | 29 | ||
175 | #include <linux/module.h> | 30 | #include <linux/module.h> |