1. 27 3月, 2012 1 次提交
    • A
      mtd: do not use plain 0 as NULL · 42d7fbe2
      Artem Bityutskiy 提交于
      The first 3 arguments of 'mtd_device_parse_register()' are pointers,
      but many callers pass '0' instead of 'NULL'. Fix this globally. Thanks
      to coccinelle for making it easy to do with the following semantic patch:
      
       @@
       expression mtd, types, parser_data, parts, nr_parts;
       @@
       (
       -mtd_device_parse_register(mtd, 0, parser_data, parts, nr_parts)
       +mtd_device_parse_register(mtd, NULL, parser_data, parts, nr_parts)
       |
       -mtd_device_parse_register(mtd, types, 0, parts, nr_parts)
       +mtd_device_parse_register(mtd, types, NULL, parts, nr_parts)
       |
       -mtd_device_parse_register(mtd, types, parser_data, 0, nr_parts)
       +mtd_device_parse_register(mtd, types, parser_data, NULL, nr_parts)
       )
      Signed-off-by: NArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      42d7fbe2
  2. 10 1月, 2012 1 次提交
  3. 11 9月, 2011 2 次提交
  4. 25 5月, 2011 1 次提交
  5. 30 10月, 2008 6 次提交
  6. 07 8月, 2008 2 次提交
  7. 05 6月, 2008 1 次提交
  8. 03 2月, 2008 1 次提交
  9. 15 7月, 2006 1 次提交
  10. 30 6月, 2006 1 次提交
  11. 29 5月, 2006 1 次提交
  12. 24 5月, 2006 1 次提交
    • T
      [MTD] Refactor NAND hwcontrol to cmd_ctrl · 7abd3ef9
      Thomas Gleixner 提交于
      The hwcontrol function enforced a step by step state machine
      for any kind of hardware chip access. Let the hardware driver
      know which control bits are set and inform it about a change
      of the control lines. Let the hardware driver write out the
      command and address bytes directly. This gives a peformance
      advantage for address bus controlled chips and simplifies the
      quirks in the hardware drivers.
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      7abd3ef9
  13. 23 5月, 2006 1 次提交
  14. 16 5月, 2006 1 次提交
  15. 14 5月, 2006 2 次提交
  16. 18 4月, 2006 1 次提交
  17. 07 11月, 2005 2 次提交
  18. 18 9月, 2005 1 次提交
  19. 06 7月, 2005 1 次提交
  20. 23 5月, 2005 1 次提交
  21. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4