Skip to content

Commit

Permalink
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/ker…
Browse files Browse the repository at this point in the history
…nel/git/jgarzik/netdev-2.6

* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6: (43 commits)
  [wireless] zd1211rw: workqueue-related build fixes
  [netdrvr] netxen: workqueue-related build fixes
  [PATCH] sky2: sparse warnings
  [PATCH] skge: fix sparse warnings
  [PATCH] myri10ge: write as 2 32-byte blocks in myri10ge_submit_8rx
  [PATCH] sky2: receive queue watermark tweak
  [PATCH] sky2: beter ram buffer partitioning
  [PATCH] sky2: add comments to PCI ids
  [PATCH] sky2: add PCI for 88ec033
  [PATCH] AT91RM9200 Ethernet: Use dev_alloc_skb()
  [PATCH] AT91RM9200 Ethernet: Add netpoll / netconsole support
  [PATCH] AT91RM9200 Ethernet: Move check_timer variable and use mod_timer()
  [PATCH] AT91RM9200 Ethernet: Remove 'at91_dev' and use netdev_priv()
  [PATCH] ipw2200: Fix debug output endian issue
  [PATCH] ipw2200: Fix a typo
  [PATCH] ipw2200: Update version stamp to 1.2.0
  [PATCH] ipw2200: Add IEEE80211_RADIOTAP_TSFT for promiscuous mode
  [PATCH] softmac: fix unbalanced mutex_lock/unlock in ieee80211softmac_wx_set_mlme
  [PATCH] softmac: Fixed handling of deassociation from AP
  [PATCH] ipw2200: replace kmalloc+memset with kcalloc
  ...
  • Loading branch information
Linus Torvalds committed Dec 7, 2006
2 parents 2685b26 + 0ae8513 commit 0a01707
Show file tree
Hide file tree
Showing 82 changed files with 2,115 additions and 1,180 deletions.
2 changes: 1 addition & 1 deletion drivers/net/3c501.c
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ int __init init_module(void)
* and then free up the resources we took when the card was found.
*/

void cleanup_module(void)
void __exit cleanup_module(void)
{
struct net_device *dev = dev_3c501;
unregister_netdev(dev);
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/3c503.c
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ static void cleanup_card(struct net_device *dev)
iounmap(ei_status.mem);
}

void
void __exit
cleanup_module(void)
{
int this_dev;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/3c505.c
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ int __init init_module(void)
return 0;
}

void cleanup_module(void)
void __exit cleanup_module(void)
{
int this_dev;

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/3c507.c
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ int __init init_module(void)
return IS_ERR(dev_3c507) ? PTR_ERR(dev_3c507) : 0;
}

void
void __exit
cleanup_module(void)
{
struct net_device *dev = dev_3c507;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/3c523.c
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ int __init init_module(void)
} else return 0;
}

void cleanup_module(void)
void __exit cleanup_module(void)
{
int this_dev;
for (this_dev=0; this_dev<MAX_3C523_CARDS; this_dev++) {
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/3c527.c
Original file line number Diff line number Diff line change
Expand Up @@ -1659,7 +1659,7 @@ int __init init_module(void)
* transmit operations are allowed to start scribbling into memory.
*/

void cleanup_module(void)
void __exit cleanup_module(void)
{
unregister_netdev(this_device);
cleanup_card(this_device);
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ac3200.c
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ static void cleanup_card(struct net_device *dev)
iounmap(ei_status.mem);
}

void
void __exit
cleanup_module(void)
{
int this_dev;
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/apne.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,15 +568,15 @@ static irqreturn_t apne_interrupt(int irq, void *dev_id)
#ifdef MODULE
static struct net_device *apne_dev;

int init_module(void)
int __init init_module(void)
{
apne_dev = apne_probe(-1);
if (IS_ERR(apne_dev))
return PTR_ERR(apne_dev);
return 0;
}

void cleanup_module(void)
void __exit cleanup_module(void)
{
unregister_netdev(apne_dev);

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/appletalk/cops.c
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ int __init init_module(void)
return 0;
}

void cleanup_module(void)
void __exit cleanup_module(void)
{
unregister_netdev(cops_dev);
cleanup_card(cops_dev);
Expand Down
Loading

0 comments on commit 0a01707

Please sign in to comment.