1. 09 11月, 2009 1 次提交
  2. 25 9月, 2009 2 次提交
  3. 21 9月, 2009 2 次提交
  4. 20 9月, 2009 4 次提交
  5. 16 9月, 2009 1 次提交
  6. 04 9月, 2009 4 次提交
  7. 12 8月, 2009 1 次提交
  8. 03 8月, 2009 1 次提交
  9. 24 6月, 2009 1 次提交
  10. 06 6月, 2009 6 次提交
  11. 29 5月, 2009 2 次提交
  12. 26 5月, 2009 1 次提交
  13. 06 4月, 2009 1 次提交
  14. 04 4月, 2009 1 次提交
  15. 03 4月, 2009 2 次提交
    • U
      [MTD] [MAPS] move sa1100 flash's probe function to .devinit.text · f0b1e589
      Uwe Kleine-König 提交于
      A pointer to sa1100_mtd_probe is passed to the core via
      platform_driver_register and so the function must not disappear when the
      .init sections are discarded.  Otherwise (if also having HOTPLUG=y)
      unbinding and binding a device to the driver via sysfs will result in an
      oops as does a device being registered late.
      
      An alternative to this patch is using platform_driver_probe instead of
      platform_driver_register plus removing the pointer to the probe function
      from the struct platform_driver.
      Signed-off-by: NUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Nicolas Pitre <nico@marvell.com>
      Cc: Russell King <rmk+kernel@arm.linux.org.uk>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      f0b1e589
    • R
      [ARM] fix build-breaking 7a192ec3 commit · 67a52bb9
      Russell King 提交于
      The commit:
      
          platform driver: fix incorrect use of 'platform_bus_type' with 'struct device_driver'
      
      contains this:
      
      -static int __exit pxa2xx_flash_remove(struct device *dev)
      +static int __exit pxa2xx_flash_remove(struct platform_device *dev)
      ...
      -       .remove         = __exit_p(pxa2xx_flash_remove),
      +       .remove         = __devexit_p(pxa2xx_flash_remove),
      
      which leads to the following build error:
      
      `pxa2xx_flash_remove' referenced in section `.data' of drivers/built-in.o: defined in discarded section `.exit.text' of drivers/built-in.o
      
      This is not the only instance of it in this patch - all __exit_p's
      touched by this patch have been converted to __devexit_p's without
      regard to the original function.
      
      Let's revert this change and, if we are going to convert functions
      to be __devexit/__devinit, lets have that as a _separate_ patch doing
      just that change.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      67a52bb9
  16. 25 3月, 2009 3 次提交
  17. 21 3月, 2009 1 次提交
  18. 11 3月, 2009 1 次提交
  19. 10 3月, 2009 1 次提交
  20. 27 2月, 2009 1 次提交
  21. 14 2月, 2009 3 次提交