1. 11 4月, 2007 2 次提交
  2. 10 4月, 2007 1 次提交
  3. 07 4月, 2007 1 次提交
  4. 04 4月, 2007 7 次提交
  5. 03 4月, 2007 1 次提交
    • M
      [BNX2]: Fix nvram write logic. · c873879c
      Michael Chan 提交于
      The nvram dword alignment logic was broken when writing less than 4
      bytes on a non-aligned offset.  It was missing logic to round the
      length to 4 bytes.
      
      The page erase code is also moved so that it is only called when
      using non-buffered flash for better code clarity.
      
      Update version to 1.5.7.
      
      Based on initial patch from Tony Cureington <tony.cureington@hp.com>.
      Signed-off-by: NMichael Chan <mchan@broadcom.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c873879c
  6. 02 4月, 2007 1 次提交
    • G
      [ARM] 4295/2: Fix error-handling in pxaficp_ir.c (version 2) · 9a4d93d4
      Guennadi Liakhovetski 提交于
      This patch addresses the following issues with the pxa2xx FIr driver:
      
      1. increment overrun error counter and not frame error counter on ICSR1_ROR bit set in ICSR1.
      2. drop frames reported with the frame error from the IC.
      3. when resetting the receiver and preparing it for the next DMA in pxa_irda_fir_irq() actually clear the Rx FIFO. See description in Table 11-2 in PXA270 Developer's Manual of the RXE bit.
      
      Correction added in version 2: clearing the IC Rx FIFO also has to be done in pxa_irda_fir_dma_tx_irq()
      Signed-off-by: NG. Liakhovetski <gl@dsa-ac.de>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      9a4d93d4
  7. 30 3月, 2007 1 次提交
  8. 29 3月, 2007 4 次提交
  9. 28 3月, 2007 13 次提交
  10. 27 3月, 2007 1 次提交
  11. 26 3月, 2007 5 次提交
  12. 25 3月, 2007 1 次提交
  13. 23 3月, 2007 2 次提交
    • J
      [netdrvr] ewrk3: correct card detection bug · 991b5557
      Jeff Garzik 提交于
      Arwin Vosselman pointed out:
      > The ewrk3-driver doesn't function with 2.6.16-kernels (used 2.6.16.41 for
      > my tests). Cards will never be detected due to this bug.
      >
      > drivers/net/ewrks3.c:
      > Line 417 reads:
      >
      > if (nicsr == (CSR_TXD | CSR_RXD))
      >
      > that should be:
      >
      > if (nicsr != (CSR_TXD | CSR_RXD))
      >
      > Comparison with the same line in v2.4 shows why:
      >
      > 2.4:
      > if (nicsr == (CSR_TXD | CSR_RXD)){
      >
      > blah, blah
      > ==========
      > 2.6:
      > if (nicsr == (CSR_TXD | CSR_RXD))
      >     return -ENXIO;
      >
      > blah, blah
      > ==========
      >
      > blah,blah will not, but should, be executed in 2.6 with a card being present.
      >
      > The fix mentioned above solves this bug.
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      991b5557
    • D
      cxgb3 - fix white spaces in drivers/net/Kconfig · 194c1fbe
      Divy Le Ray 提交于
      Use tabs instead of white spaces for CHELSIO_T3 entry.
      Signed-off-by: NDivy Le Ray <divy@chelsio.com>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      194c1fbe