1. 03 4月, 2009 1 次提交
    • 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
  2. 25 3月, 2009 1 次提交
  3. 07 8月, 2008 2 次提交
  4. 16 10月, 2007 1 次提交
    • L
      Reinstate lost flush_ioremap_region() fix to pxa2xx-flash driver · 355aaffd
      Linus Torvalds 提交于
      Commit 90833fda ("[ARM] 4554/1: replace
      consistent_sync() with flush_ioremap_region()") introduced a new
      "flush_ioremap_region()" function to be used by the MTD mainstone-flash
      and lubbock-flash drivers to fix a regression from around 2.6.18.
      
      Those drivers were independently merged into a single driver by Todd
      Poynor in commit e644f7d6 ("[MTD] MAPS:
      Merge Lubbock and Mainstone drivers into common PXA2xx driver")
      
      Later, those two commits were merged into the main MTD tree by commit
      b160292c ("Merge Linux 2.6.23") by David
      Woodhouse, but in that merge, the fix to use flush_iomap_region() got
      lost (as it was to files that now no longer existed).
      
      This reinstates the fix in the new driver.
      Noticed-by: NRussell King <rmk@arm.linux.org.uk>
      Tested-and-acked-by: NNicolas Pitre <nico@cam.org>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Jared Hulbert <jaredeh@gmail.com>
      Cc: Todd Poynor <tpoynor@mvista.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      355aaffd
  5. 24 9月, 2007 1 次提交