Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 41558
b: refs/heads/master
c: 352c417
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger authored and Jeff Garzik committed Dec 2, 2006
1 parent cc0173d commit 663678b
Show file tree
Hide file tree
Showing 13 changed files with 2,781 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f1d3d38af75789f1b82969b83b69cab540609789
refs/heads/master: 352c417ddb593de757f0ee1fa490cb5444778c41
7 changes: 7 additions & 0 deletions trunk/drivers/net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2376,6 +2376,13 @@ config CHELSIO_T1
To compile this driver as a module, choose M here: the module
will be called cxgb.

config CHELSIO_T1_1G
bool "Chelsio gigabit Ethernet support"
depends on CHELSIO_T1
help
Enables support for Chelsio's gigabit Ethernet PCI cards. If you
are using only 10G cards say 'N' here.

config EHEA
tristate "eHEA Ethernet support"
depends on IBMEBUS
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/net/chelsio/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

obj-$(CONFIG_CHELSIO_T1) += cxgb.o

cxgb-$(CONFIG_CHELSIO_T1_1G) += ixf1010.o mac.o mv88e1xxx.o vsc7326.o vsc8244.o
cxgb-objs := cxgb2.o espi.o tp.o pm3393.o sge.o subr.o \
mv88x201x.o my3126.o $(cxgb-y)

Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/net/chelsio/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,8 @@ struct adapter {

spinlock_t tpi_lock;
spinlock_t work_lock;
spinlock_t mac_lock;

/* guards async operations */
spinlock_t async_lock ____cacheline_aligned;
u32 slow_intr_mask;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/net/chelsio/cxgb2.c
Original file line number Diff line number Diff line change
Expand Up @@ -1094,6 +1094,7 @@ static int __devinit init_one(struct pci_dev *pdev,
spin_lock_init(&adapter->tpi_lock);
spin_lock_init(&adapter->work_lock);
spin_lock_init(&adapter->async_lock);
spin_lock_init(&adapter->mac_lock);

INIT_WORK(&adapter->ext_intr_handler_task,
ext_intr_task, adapter);
Expand Down
Loading

0 comments on commit 663678b

Please sign in to comment.