Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
02a38ad0
Commit
02a38ad0
authored
Jan 10, 2004
by
Scott Feldman
Committed by
Jeff Garzik
Jan 10, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[e100] missed a kfree -> free_netdev
* missed a kfree -> free_netdev
parent
4576b4fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
drivers/net/e100/e100_main.c
drivers/net/e100/e100_main.c
+8
-10
No files found.
drivers/net/e100/e100_main.c
View file @
02a38ad0
...
...
@@ -46,20 +46,18 @@
/* Change Log
*
* 2.3.30 09/21/03
* 2.3.36 11/13/03
* o Moved to 2.6 APIs: pci_name() and free_netdev().
* o Removed some __devinit from some functions that shouldn't be marked
* as such (Anton Blanchard [anton@samba.org]).
*
* 2.3.33 10/21/03
* o Bug fix (Bugzilla 97908): Loading e100 was causing crash on Itanium2
* with HP chipset
* o Bug fix (Bugzilla 101583): e100 can't pass traffic with ipv6
* o Bug fix (Bugzilla 101360): PRO/10+ can't pass traffic
*
* 2.3.27 08/08/03
* o Bug fix: read skb->len after freeing skb
* [Andrew Morton] akpm@zip.com.au
* o Bug fix: 82557 (with National PHY) timeout during init
* [Adam Kropelin] akropel1@rochester.rr.com
* o Feature add: allow to change Wake On LAN when EEPROM disabled
*
* 2.3.13 05/08/03
*/
#include <linux/config.h>
...
...
@@ -125,7 +123,7 @@ static void e100_non_tx_background(unsigned long);
static
inline
void
e100_tx_skb_free
(
struct
e100_private
*
bdp
,
tcb_t
*
tcb
);
/* Global Data structures and variables */
char
e100_copyright
[]
=
"Copyright (c) 2003 Intel Corporation"
;
char
e100_driver_version
[]
=
"2.3.3
0
-k1"
;
char
e100_driver_version
[]
=
"2.3.3
6
-k1"
;
const
char
*
e100_full_driver_name
=
"Intel(R) PRO/100 Network Driver"
;
char
e100_short_driver_name
[]
=
"e100"
;
static
int
e100nics
=
0
;
...
...
@@ -696,7 +694,7 @@ e100_found1(struct pci_dev *pcid, const struct pci_device_id *ent)
pci_disable_device
(
pcid
);
err_dev:
pci_set_drvdata
(
pcid
,
NULL
);
kfree
(
dev
);
free_netdev
(
dev
);
out:
return
rc
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment