Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35293
b: refs/heads/master
c: d5b2069
h: refs/heads/master
i:
  35291: 6c35b05
v: v3
  • Loading branch information
Andy Gospodarek authored and Jeff Garzik committed Sep 12, 2006
1 parent 5c712d0 commit 1988d57
Show file tree
Hide file tree
Showing 175 changed files with 2,914 additions and 10,371 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c925f1ea9ec20a95d46f57810f4a4d69db74580e
refs/heads/master: d5b20697ca37d80cc4ec2ba3c5ddf1339dc1d49a
46 changes: 0 additions & 46 deletions trunk/Documentation/networking/LICENSE.qla3xxx

This file was deleted.

37 changes: 5 additions & 32 deletions trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,9 @@ L: linux-hams@vger.kernel.org
W: http://www.baycom.org/~tom/ham/ham.html
S: Maintained

BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
P: Larry Finger
M: Larry.Finger@lwfinger.net
BCM43XX WIRELESS DRIVER
P: Michael Buesch
M: mb@bu3sch.de
P: Stefano Brivio
M: st3@riseup.net
W: http://bcm43xx.berlios.de/
Expand Down Expand Up @@ -2366,12 +2366,6 @@ M: linux-driver@qlogic.com
L: linux-scsi@vger.kernel.org
S: Supported

QLOGIC QLA3XXX NETWORK DRIVER
P: Ron Mercer
M: linux-driver@qlogic.com
L: netdev@vger.kernel.org
S: Supported

QNX4 FILESYSTEM
P: Anders Larsen
M: al@alarsen.net
Expand Down Expand Up @@ -2622,18 +2616,6 @@ P: Nicolas Pitre
M: nico@cam.org
S: Maintained

SOFTMAC LAYER (IEEE 802.11)
P: Johannes Berg
M: johannes@sipsolutions.net
P: Joe Jezak
M: josejx@gentoo.org
P: Daniel Drake
M: dsd@gentoo.org
W: http://softmac.sipsolutions.net/
L: softmac-dev@sipsolutions.net
L: netdev@vger.kernel.org
S: Maintained

SOFTWARE RAID (Multiple Disks) SUPPORT
P: Ingo Molnar
M: mingo@redhat.com
Expand Down Expand Up @@ -2907,8 +2889,8 @@ W: http://www.auk.cx/tms380tr/
S: Maintained

TULIP NETWORK DRIVER
P: Valerie Henson
M: val_henson@linux.intel.com
P: Jeff Garzik
M: jgarzik@pobox.com
L: tulip-users@lists.sourceforge.net
W: http://sourceforge.net/projects/tulip/
S: Maintained
Expand Down Expand Up @@ -3359,15 +3341,6 @@ W: http://www.qsl.net/dl1bke/
L: linux-hams@vger.kernel.org
S: Maintained

ZD1211RW WIRELESS DRIVER
P: Daniel Drake
M: dsd@gentoo.org
P: Ulrich Kunitz
M: kune@deine-taler.de
W: http://zd1211.ath.cx/wiki/DriverRewrite
L: zd1211-devs@lists.sourceforge.net (subscribers-only)
S: Maintained

ZF MACHZ WATCHDOG
P: Fernando Fuganti
M: fuganti@netbank.com.br
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/isdn/i4l/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
config ISDN_PPP
bool "Support synchronous PPP"
depends on INET
select SLHC
help
Over digital connections such as ISDN, there is no need to
synchronize sender and recipient's clocks with start and stop bits
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/net/3c501.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ static const char version[] =
#include <linux/slab.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/config.h> /* for CONFIG_IP_MULTICAST */
#include <linux/spinlock.h>
#include <linux/ethtool.h>
#include <linux/delay.h>
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/net/3c59x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2928,7 +2928,7 @@ static void set_rx_mode(struct net_device *dev)
int new_mode;

if (dev->flags & IFF_PROMISC) {
if (vortex_debug > 0)
if (vortex_debug > 3)
printk(KERN_NOTICE "%s: Setting promiscuous mode.\n", dev->name);
new_mode = SetRxFilter|RxStation|RxMulticast|RxBroadcast|RxProm;
} else if ((dev->mc_list) || (dev->flags & IFF_ALLMULTI)) {
Expand Down Expand Up @@ -3169,7 +3169,7 @@ static int __init vortex_init(void)
{
int pci_rc, eisa_rc;

pci_rc = pci_register_driver(&vortex_driver);
pci_rc = pci_module_init(&vortex_driver);
eisa_rc = vortex_eisa_init();

if (pci_rc == 0)
Expand Down
6 changes: 2 additions & 4 deletions trunk/drivers/net/8139cp.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
*/

#define DRV_NAME "8139cp"
#define DRV_VERSION "1.2"
#define DRV_VERSION "1.3"
#define DRV_RELDATE "Mar 22, 2004"


Expand Down Expand Up @@ -942,8 +942,6 @@ static void __cp_set_rx_mode (struct net_device *dev)
/* Note: do not reorder, GCC is clever about common statements. */
if (dev->flags & IFF_PROMISC) {
/* Unconditionally log net taps. */
printk (KERN_NOTICE "%s: Promiscuous mode enabled.\n",
dev->name);
rx_mode =
AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
AcceptAllPhys;
Expand Down Expand Up @@ -2098,7 +2096,7 @@ static int __init cp_init (void)
#ifdef MODULE
printk("%s", version);
#endif
return pci_register_driver(&cp_driver);
return pci_module_init (&cp_driver);
}

static void __exit cp_exit (void)
Expand Down
7 changes: 2 additions & 5 deletions trunk/drivers/net/8139too.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
*/

#define DRV_NAME "8139too"
#define DRV_VERSION "0.9.27"
#define DRV_VERSION "0.9.28"


#include <linux/module.h>
Expand Down Expand Up @@ -2512,9 +2512,6 @@ static void __set_rx_mode (struct net_device *dev)

/* Note: do not reorder, GCC is clever about common statements. */
if (dev->flags & IFF_PROMISC) {
/* Unconditionally log net taps. */
printk (KERN_NOTICE "%s: Promiscuous mode enabled.\n",
dev->name);
rx_mode =
AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
AcceptAllPhys;
Expand Down Expand Up @@ -2629,7 +2626,7 @@ static int __init rtl8139_init_module (void)
printk (KERN_INFO RTL8139_DRIVER_NAME "\n");
#endif

return pci_register_driver(&rtl8139_pci_driver);
return pci_module_init (&rtl8139_pci_driver);
}


Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/net/8390.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ static int ei_start_xmit(struct sk_buff *skb, struct net_device *dev)
* Slow phase with lock held.
*/

disable_irq_nosync_lockdep(dev->irq);
disable_irq_nosync(dev->irq);

spin_lock(&ei_local->page_lock);

Expand Down Expand Up @@ -338,7 +338,7 @@ static int ei_start_xmit(struct sk_buff *skb, struct net_device *dev)
netif_stop_queue(dev);
outb_p(ENISR_ALL, e8390_base + EN0_IMR);
spin_unlock(&ei_local->page_lock);
enable_irq_lockdep(dev->irq);
enable_irq(dev->irq);
ei_local->stat.tx_errors++;
return 1;
}
Expand Down Expand Up @@ -379,7 +379,7 @@ static int ei_start_xmit(struct sk_buff *skb, struct net_device *dev)
outb_p(ENISR_ALL, e8390_base + EN0_IMR);

spin_unlock(&ei_local->page_lock);
enable_irq_lockdep(dev->irq);
enable_irq(dev->irq);

dev_kfree_skb (skb);
ei_local->stat.tx_bytes += send_length;
Expand Down Expand Up @@ -505,9 +505,9 @@ irqreturn_t ei_interrupt(int irq, void *dev_id, struct pt_regs * regs)
#ifdef CONFIG_NET_POLL_CONTROLLER
void ei_poll(struct net_device *dev)
{
disable_irq_lockdep(dev->irq);
disable_irq(dev->irq);
ei_interrupt(dev->irq, dev, NULL);
enable_irq_lockdep(dev->irq);
enable_irq(dev->irq);
}
#endif

Expand Down
33 changes: 0 additions & 33 deletions trunk/drivers/net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1411,22 +1411,6 @@ config FORCEDETH
<file:Documentation/networking/net-modules.txt>. The module will be
called forcedeth.

config FORCEDETH_NAPI
bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
depends on FORCEDETH && EXPERIMENTAL
help
NAPI is a new driver API designed to reduce CPU and interrupt load
when the driver is receiving lots of packets from the card. It is
still somewhat experimental and thus not yet enabled by default.

If your estimated Rx load is 10kpps or more, or if the card will be
deployed on potentially unfriendly networks (e.g. in a firewall),
then say Y here.

See <file:Documentation/networking/NAPI_HOWTO.txt> for more
information.

If in doubt, say N.

config CS89x0
tristate "CS89x0 support"
Expand Down Expand Up @@ -2306,15 +2290,6 @@ config MV643XX_ETH_2
This enables support for Port 2 of the Marvell MV643XX Gigabit
Ethernet.

config QLA3XXX
tristate "QLogic QLA3XXX Network Driver Support"
depends on PCI
help
This driver supports QLogic ISP3XXX gigabit Ethernet cards.

To compile this driver as a module, choose M here: the module
will be called qla3xxx.

endmenu

#
Expand Down Expand Up @@ -2575,7 +2550,6 @@ config PLIP

config PPP
tristate "PPP (point-to-point protocol) support"
select SLHC
---help---
PPP (Point to Point Protocol) is a newer and better SLIP. It serves
the same purpose: sending Internet traffic over telephone (and other
Expand Down Expand Up @@ -2756,7 +2730,6 @@ config SLIP
config SLIP_COMPRESSED
bool "CSLIP compressed headers"
depends on SLIP
select SLHC
---help---
This protocol is faster than SLIP because it uses compression on the
TCP/IP headers (not on the data itself), but it has to be supported
Expand All @@ -2769,12 +2742,6 @@ config SLIP_COMPRESSED
<http://www.tldp.org/docs.html#howto>, explains how to configure
CSLIP. This won't enlarge your kernel.

config SLHC
tristate
help
This option enables Van Jacobsen serial line header compression
routines.

config SLIP_SMART
bool "Keepalive and linefill"
depends on SLIP
Expand Down
11 changes: 8 additions & 3 deletions trunk/drivers/net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Makefile for the Linux network (ethercard) device drivers.
#

ifeq ($(CONFIG_ISDN_PPP),y)
obj-$(CONFIG_ISDN) += slhc.o
endif

obj-$(CONFIG_E1000) += e1000/
obj-$(CONFIG_IBM_EMAC) += ibm_emac/
obj-$(CONFIG_IXGB) += ixgb/
Expand Down Expand Up @@ -109,9 +113,8 @@ obj-$(CONFIG_FORCEDETH) += forcedeth.o
obj-$(CONFIG_NE_H8300) += ne-h8300.o 8390.o

obj-$(CONFIG_MV643XX_ETH) += mv643xx_eth.o
obj-$(CONFIG_QLA3XXX) += qla3xxx.o

obj-$(CONFIG_PPP) += ppp_generic.o
obj-$(CONFIG_PPP) += ppp_generic.o slhc.o
obj-$(CONFIG_PPP_ASYNC) += ppp_async.o
obj-$(CONFIG_PPP_SYNC_TTY) += ppp_synctty.o
obj-$(CONFIG_PPP_DEFLATE) += ppp_deflate.o
Expand All @@ -120,7 +123,9 @@ obj-$(CONFIG_PPP_MPPE) += ppp_mppe.o
obj-$(CONFIG_PPPOE) += pppox.o pppoe.o

obj-$(CONFIG_SLIP) += slip.o
obj-$(CONFIG_SLHC) += slhc.o
ifeq ($(CONFIG_SLIP_COMPRESSED),y)
obj-$(CONFIG_SLIP) += slhc.o
endif

obj-$(CONFIG_DUMMY) += dummy.o
obj-$(CONFIG_IFB) += ifb.o
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/acenic.c
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ static struct pci_driver acenic_pci_driver = {

static int __init acenic_init(void)
{
return pci_register_driver(&acenic_pci_driver);
return pci_module_init(&acenic_pci_driver);
}

static void __exit acenic_exit(void)
Expand Down
7 changes: 3 additions & 4 deletions trunk/drivers/net/amd8111e.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ Revision History:

#include "amd8111e.h"
#define MODULE_NAME "amd8111e"
#define MODULE_VERS "3.0.5"
#define MODULE_VERS "3.0.6"
MODULE_AUTHOR("Advanced Micro Devices, Inc.");
MODULE_DESCRIPTION ("AMD8111 based 10/100 Ethernet Controller. Driver Version 3.0.3");
MODULE_DESCRIPTION ("AMD8111 based 10/100 Ethernet Controller. Driver Version 3.0.6");
MODULE_LICENSE("GPL");
MODULE_DEVICE_TABLE(pci, amd8111e_pci_tbl);
module_param_array(speed_duplex, int, NULL, 0);
Expand Down Expand Up @@ -1527,7 +1527,6 @@ static void amd8111e_set_multicast_list(struct net_device *dev)
u32 mc_filter[2] ;
int i,bit_num;
if(dev->flags & IFF_PROMISC){
printk(KERN_INFO "%s: Setting promiscuous mode.\n",dev->name);
writel( VAL2 | PROM, lp->mmio + CMD2);
return;
}
Expand Down Expand Up @@ -2158,7 +2157,7 @@ static struct pci_driver amd8111e_driver = {

static int __init amd8111e_init(void)
{
return pci_register_driver(&amd8111e_driver);
return pci_module_init(&amd8111e_driver);
}

static void __exit amd8111e_cleanup(void)
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/arcnet/com20020-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ static struct pci_driver com20020pci_driver = {
static int __init com20020pci_init(void)
{
BUGLVL(D_NORMAL) printk(VERSION);
return pci_register_driver(&com20020pci_driver);
return pci_module_init(&com20020pci_driver);
}

static void __exit com20020pci_cleanup(void)
Expand Down
Loading

0 comments on commit 1988d57

Please sign in to comment.