1. 17 11月, 2011 1 次提交
  2. 15 11月, 2011 1 次提交
  3. 14 11月, 2011 1 次提交
  4. 18 10月, 2011 1 次提交
  5. 11 10月, 2011 1 次提交
  6. 29 9月, 2011 2 次提交
  7. 28 9月, 2011 1 次提交
    • P
      doc: fix broken references · 395cf969
      Paul Bolle 提交于
      There are numerous broken references to Documentation files (in other
      Documentation files, in comments, etc.). These broken references are
      caused by typo's in the references, and by renames or removals of the
      Documentation files. Some broken references are simply odd.
      
      Fix these broken references, sometimes by dropping the irrelevant text
      they were part of.
      Signed-off-by: NPaul Bolle <pebolle@tiscali.nl>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      395cf969
  8. 21 9月, 2011 1 次提交
  9. 17 9月, 2011 1 次提交
  10. 27 8月, 2011 2 次提交
  11. 18 8月, 2011 4 次提交
  12. 15 8月, 2011 1 次提交
    • M
      net/can/mscan: add __iomem annotations · 665d7eb8
      Marc Kleine-Budde 提交于
      This patch fixes the following sparse warning by adding the missing
      __iomem annotation.
      
      drivers/net/can/mscan/mscan.c:73:32: warning: incorrect type in argument 1 (different address spaces)
      drivers/net/can/mscan/mscan.c:73:32:    expected unsigned char volatile [noderef] [usertype] <asn:2>*addr
      drivers/net/can/mscan/mscan.c:73:32:    got unsigned char *<noident>
      Signed-off-by: NMarc Kleine-Budde <mkl@pengutronix.de>
      665d7eb8
  13. 14 8月, 2011 1 次提交
    • J
      drivers/net/can/sja1000/plx_pci.c: eliminate double free · 951f2f96
      Julia Lawall 提交于
      In this code, the failure_cleanup label calls the function
      plx_pci_del_card, which frees everything in the card->net_dev array.  dev
      is placed in this array immediately after allocation, so the two subsequent
      jumps to failure_cleanup should not also call free_sja1000dev, but the
      second one does.
      
      If plx_pci_check_sja1000 fails, then free_sja1000dev is also called on
      dev.  Because dev is already in the card->net_dev array, this implies that
      when plx_pci_del_card is later called, it may get freed again.  So that
      entry is reset to NULL after the free.
      
      Finally, if there is a problem with one channel, there will be a hole in the
      array.  card->channels counts the number of channels that have succeeded,
      and does not keep track of the index of the largest element in the array
      that is valid.  So the loop in plx_pci_del_card is changed to go up to
      PLX_PCI_MAX_CHAN, which is only 2.
      Signed-off-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      951f2f96
  14. 11 8月, 2011 1 次提交
  15. 24 7月, 2011 1 次提交
  16. 22 7月, 2011 1 次提交
  17. 20 7月, 2011 1 次提交
  18. 19 7月, 2011 1 次提交
  19. 15 7月, 2011 1 次提交
  20. 01 7月, 2011 1 次提交
  21. 29 6月, 2011 2 次提交
  22. 28 6月, 2011 2 次提交
  23. 24 6月, 2011 1 次提交
  24. 22 6月, 2011 1 次提交
    • A
      net: remove mm.h inclusion from netdevice.h · b7f080cf
      Alexey Dobriyan 提交于
      Remove linux/mm.h inclusion from netdevice.h -- it's unused (I've checked manually).
      
      To prevent mm.h inclusion via other channels also extract "enum dma_data_direction"
      definition into separate header. This tiny piece is what gluing netdevice.h with mm.h
      via "netdevice.h => dmaengine.h => dma-mapping.h => scatterlist.h => mm.h".
      Removal of mm.h from scatterlist.h was tried and was found not feasible
      on most archs, so the link was cutoff earlier.
      
      Hope people are OK with tiny include file.
      
      Note, that mm_types.h is still dragged in, but it is a separate story.
      Signed-off-by: NAlexey Dobriyan <adobriyan@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b7f080cf
  25. 20 6月, 2011 1 次提交
  26. 10 6月, 2011 1 次提交
  27. 07 6月, 2011 1 次提交
  28. 06 6月, 2011 6 次提交