1. 06 9月, 2014 1 次提交
  2. 13 8月, 2014 1 次提交
  3. 09 8月, 2014 2 次提交
  4. 08 8月, 2014 1 次提交
  5. 06 8月, 2014 2 次提交
  6. 03 8月, 2014 1 次提交
  7. 31 7月, 2014 4 次提交
  8. 30 7月, 2014 2 次提交
  9. 24 7月, 2014 1 次提交
  10. 16 7月, 2014 1 次提交
  11. 15 7月, 2014 6 次提交
  12. 09 7月, 2014 1 次提交
    • M
      declance: Fix 64-bit compilation warnings · 3d5baba0
      Maciej W. Rozycki 提交于
      This fixes compiler warnings:
      
      drivers/net/ethernet/amd/declance.c: In function 'lance_init_ring':
      drivers/net/ethernet/amd/declance.c:478: warning: format '%8.8x' expects type 'unsigned int', but argument 3 has type 'long unsigned int'
      drivers/net/ethernet/amd/declance.c:487: warning: format '%8.8x' expects type 'unsigned int', but argument 3 has type 'long unsigned int'
      drivers/net/ethernet/amd/declance.c:503: warning: cast from pointer to integer of different size
      drivers/net/ethernet/amd/declance.c:520: warning: cast from pointer to integer of different size
      
      in 64-bit compilation.  Where the value printed is an offset (whose range
      will always fit) the cast uses a 32-bit type, otherwise, where it is a
      host memory address, the pointer is output directly with %p.  Also the
      remaining `0x' prefix is dropped for consistency across these messages.
      
      Tested with both 32-bit and 64-bit compilation, as well as at the run time
      (with the debug messages affected enabled).
      Signed-off-by: NMaciej W. Rozycki <macro@linux-mips.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      3d5baba0
  13. 08 7月, 2014 5 次提交
  14. 27 6月, 2014 6 次提交
  15. 12 6月, 2014 1 次提交
  16. 11 6月, 2014 1 次提交
  17. 07 6月, 2014 1 次提交
  18. 06 6月, 2014 3 次提交