1. 22 11月, 2012 1 次提交
  2. 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
  3. 10 1月, 2012 1 次提交
  4. 11 9月, 2011 3 次提交
  5. 25 5月, 2011 1 次提交
  6. 11 3月, 2011 1 次提交
  7. 20 9月, 2009 1 次提交
    • M
      mtd: onenand: make onenand/generic.c more generic · 778dbcc1
      Magnus Damm 提交于
      Remove the ARM dependency from the generic "onenand" platform device
      driver.  This change makes the driver useful for other architectures as
      well.  Needed for the SuperH kfr2r09 board.
      
      Apart from the obvious Kconfig bits, the most important change is the move
      away from ARM specific includes and platform data.  Together with this
      change the only in-tree board code gets an update, and the driver name is
      also changed gracefully break potential out of tree drivers.
      
      The driver is also updated to allow NULL as platform data together with a
      few changes to make use of resource_size() and dev_name().
      Signed-off-by: NMagnus Damm <damm@igel.co.jp>
      Cc: Paul Mundt <lethal@linux-sh.org>
      Cc: Tony Lindgren <tony@atomide.com>
      Cc: Kyungmin Park <kmpark@infradead.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      778dbcc1
  8. 25 3月, 2009 1 次提交
  9. 07 1月, 2009 1 次提交
  10. 23 12月, 2008 1 次提交
  11. 05 6月, 2008 1 次提交
  12. 29 11月, 2006 1 次提交
  13. 16 11月, 2006 1 次提交
    • K
      MTD: OneNAND: interrupt based wait support · 2c22120f
      Kyungmin Park 提交于
        We can use the two methods to wait.
        1. polling: read interrupt status register
        2. interrupt: use kernel ineterrupt mechanism
      
        To use interrupt method, you first connect onenand interrupt pin to your
      platform and configure interrupt properly
      
      Signed-off-by: Kyungmin Park <kyungmin.park at samsung.com>
      2c22120f
  14. 09 1月, 2006 1 次提交
  15. 19 12月, 2005 1 次提交
  16. 07 11月, 2005 4 次提交