aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRussell King <rmk@dyn-67.arm.linux.org.uk>2009-04-02 23:23:43 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-04-02 23:23:43 +0100
commit67a52bb90b515c2a96ec51a3571bcd70a2fadb50 (patch)
tree415e6bdd27caace2145c3d7f1c38a5af77613cf6 /include
parentMerge branch 'smsc911x-armplatforms' of git://github.com/steveglen/linux-2.6 (diff)
downloadlinux-dev-67a52bb90b515c2a96ec51a3571bcd70a2fadb50.tar.xz
linux-dev-67a52bb90b515c2a96ec51a3571bcd70a2fadb50.zip
[ARM] fix build-breaking 7a192ec commit
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: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include')
0 files changed, 0 insertions, 0 deletions