1. 06 5月, 2016 1 次提交
  2. 19 12月, 2015 2 次提交
  3. 09 12月, 2015 1 次提交
  4. 14 10月, 2015 1 次提交
  5. 20 10月, 2014 1 次提交
  6. 08 1月, 2014 1 次提交
  7. 04 1月, 2014 1 次提交
  8. 31 8月, 2013 1 次提交
  9. 06 8月, 2013 1 次提交
  10. 22 11月, 2012 3 次提交
  11. 27 3月, 2012 2 次提交
    • M
      mtd: flash drivers set ecc strength · 6a918bad
      Mike Dunn 提交于
      Flash device drivers initialize 'ecc_strength' in struct mtd_info, which is the
      maximum number of bit errors that can be corrected in one writesize region.
      
      Drivers using the nand interface intitialize 'strength' in struct nand_ecc_ctrl,
      which is the maximum number of bit errors that can be corrected in one ecc step.
      Nand infrastructure code translates this to 'ecc_strength'.
      
      Also for nand drivers, the nand infrastructure code sets ecc.strength for ecc
      modes NAND_ECC_SOFT, NAND_ECC_SOFT_BCH, and NAND_ECC_NONE.  It is set in the
      driver for all other modes.
      Signed-off-by: NMike Dunn <mikedunn@newsguy.com>
      Signed-off-by: NArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      6a918bad
    • 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
  12. 10 1月, 2012 1 次提交
  13. 11 9月, 2011 2 次提交
  14. 25 5月, 2011 1 次提交
  15. 30 10月, 2008 6 次提交
  16. 07 8月, 2008 2 次提交
  17. 05 6月, 2008 1 次提交
  18. 03 2月, 2008 1 次提交
  19. 15 7月, 2006 1 次提交
  20. 30 6月, 2006 1 次提交
  21. 29 5月, 2006 1 次提交
  22. 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
  23. 23 5月, 2006 1 次提交
  24. 16 5月, 2006 1 次提交
  25. 14 5月, 2006 2 次提交
  26. 18 4月, 2006 1 次提交
  27. 07 11月, 2005 2 次提交