- 31 Aug, 2003 4 commits
-
-
Jeff Garzik authored
-
Jeff Garzik authored
The only thing that differentiated most of the entries in the board_info[] table and the board_t type was the vendor branding string for the board. This table is a pain to maintain, so we prefer to simply use "RTL8129" or "RTL8139".
-
Paul Mundt authored
a.k.a. Sega Broadband Adapter.
-
Jeff Garzik authored
Updated drivers; 3c574_cs, axnet_cs, pcnet_cs, xirc2ps_cs Thanks to Komuro for pointing this out.
-
- 30 Aug, 2003 9 commits
-
-
Jeff Garzik authored
* only set PCIDAC (64-bit PCI) bit in hardware if sizeof(dma_addr_t) > 32. Need a better test for whether 64-bit mode is _really_ needed. * cache chip command register in private struct. this allows the setting of rx-vlan, rx-csum, and other features to be persistent across the entire lifetime of the net device. * remove dead private struct members frag_skb, dropping_frag, and pci_using_dac.
-
Jeff Garzik authored
* make sure rx_frags is still accounted * query RxMissed register, and clear, upon each get-stats func call
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
* remove netif_queue_stopped test, netif_wake_queue already does that * move vlan stuff to top of file * remove __dev markers * update todo list at top of file * remove pci_set_dma_mask argument casts; ULL suffixes preferred.
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
NAPI is turned on unconditionally for the RX path. The hardware supports interrupt mitigation, so that should be investigated too. RX fragment handling removed. We simply ensure that we alloc buffers large enough to hold incoming packets. Any stray RX frags that occur (shouldn't be any) will be dropped.
-
Jeff Garzik authored
(previously it was ifdef'd) Also, bump version to 1.0.
-
- 27 Aug, 2003 3 commits
-
-
François Romieu authored
Missing pieces for DMA-API on the Rx side: - SiS190_init_ring: the global area for the received data is mapped. This area is persistent during the whole driver's life. It only needs to be unmapped in SiS190_close() as no other exit/error path exists. - SiS190_rx_interrupt: no map/unmap for received data buffer. A single sync operation is done. Btw, there is no need to store the same value in RxDescArray[cur_rx].buf_addr over and over again. - Remove driver dependancy on CONFIG_BROKEN.
-
Matthew Wilcox authored
-
Matthew Wilcox authored
-
- 26 Aug, 2003 22 commits
-
-
Jeff Garzik authored
* call pci_set_dma_mask * remove erroneous call to unregister_netdev in _init_board()
-
Javier Achirica authored
-
Greg Kroah-Hartman authored
I realized that I've had this patch in my tree for a while, and forgot to send it to you and lkml. The patch below fixes bug number 923: http://bugme.osdl.org/show_bug.cgi?id=923 (basically keeps us from calling pci_find_device from interrupt context.) It's been tested by a few people with this device, and they say it works just fine for them. Please forward it on up the food chain.
-
Hirofumi Ogawa authored
-
Hirofumi Ogawa authored
-
Hirofumi Ogawa authored
-
Stefan Rompf authored
instead of homebrew MII bitbanging.
-
François Romieu authored
Driver does not need to enforce 256 byte alignment for data returned from pci_alloc_consistent(). - {rx/tx}_dma_aligned and {rx/td}_dma_raw are both replaced by {rx/tx}_dma; - {rx/tx}_desc_raw is replaced by direct use of {Rx/Tx}DescArray; - SiS190_open() + fixup for a lack of kmalloc() failure handling; + (return status) there is no need for both retval/rc: merge them; + anonymous printk() fixup: the name of the guilty device is printed; - define {RX/TX}_DESC_TOTAL_SIZE because I am too lazy to read twice the same lengthy arithmetic expression.
-
Jeff Garzik authored
-
Jeff Garzik authored
Also, export PCI bus id via ETHTOOL_GDRVINFO.
-
Jeff Garzik authored
Drivers updated: fmvj18x_cs, ibmtr_cs, nmclan_cs, pcnet_cs, xirc2ps_cs.
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
Until RX path is cleaned up to use PCI DMA API and not virt_to_bus.
-
Jeff Garzik authored
Also, minor changes: * mark ->hard_start_xmit ETH_ZLEN test as unlikely() * use cpu_to_le32() and le32_to_cpu() in TX path * fix two leak in error path, in ->hard_start_xmit * don't test netif_queue_stopped() in TX completion path, netif_wake_queue() already does that.
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Matthew Wilcox authored
-
François Romieu authored
Looks like this driver wasn't tested on SMP :)
-
Adrian Bunk authored
older gcc's do not support C99/C++ style of variable declarations.
-
- 22 Aug, 2003 2 commits
-
-
Vinay K. Nallamothu authored
sound/pcmcia/vx/vx_entry.c: This patch removes the PCMCIA timer release functionality which is no longer required. Without this the module does not compile.
-
Linus Torvalds authored
Too much cut-and-paste, noticed by Dmitry Torokhov <dtor_core@ameritech.net>
-