1. 09 2月, 2009 1 次提交
  2. 06 9月, 2008 1 次提交
  3. 07 8月, 2008 2 次提交
  4. 28 4月, 2008 1 次提交
  5. 11 4月, 2008 1 次提交
  6. 17 10月, 2007 1 次提交
    • D
      SPI driver runtime footprint shrinkage · d1e44d9c
      David Brownell 提交于
      Shrink the runtime footprint of various SPI drivers:
      
        - Move the probe() routine into the init section where practical,
          using platform_driver_probe() to make that safe.  This often saves
          around 1KB.  Using platform_driver_probe() can also be a correctness
          fix, if the probe routine is already marked __init but the driver
          struct keeps a dangling pointer to it after init section removal.
      
        - Likewise move remove() routines into the exit sections.
      
      These changes would be inappropriate iff the platform devices were
      actually hotpluggable (e.g. they're found on optional addon cards,
      or in an FPGA that's dynamically reprogrammed).  In these cases,
      that's not the situation; it's an SOC controller and the only device
      is initialized before these drivers.
      Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      d1e44d9c
  7. 18 7月, 2007 1 次提交
  8. 24 5月, 2007 1 次提交
  9. 21 2月, 2007 1 次提交
  10. 13 2月, 2007 1 次提交