67a52bb90b
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> |
||
---|---|---|
.. | ||
alchemy-flash.c | ||
amd76xrom.c | ||
autcpu12-nvram.c | ||
bfin-async-flash.c | ||
cdb89712.c | ||
ceiva.c | ||
cfi_flagadm.c | ||
ck804xrom.c | ||
dbox2-flash.c | ||
dc21285.c | ||
dilnetpc.c | ||
dmv182.c | ||
edb7312.c | ||
esb2rom.c | ||
fortunet.c | ||
h720x-flash.c | ||
ichxrom.c | ||
impa7.c | ||
integrator-flash.c | ||
intel_vr_nor.c | ||
ipaq-flash.c | ||
ixp4xx.c | ||
ixp2000.c | ||
Kconfig | ||
l440gx.c | ||
Makefile | ||
map_funcs.c | ||
mbx860.c | ||
netsc520.c | ||
nettel.c | ||
octagon-5066.c | ||
omap_nor.c | ||
pci.c | ||
pcmciamtd.c | ||
physmap_of.c | ||
physmap.c | ||
plat-ram.c | ||
pmcmsp-flash.c | ||
pmcmsp-ramroot.c | ||
pxa2xx-flash.c | ||
redwood.c | ||
rpxlite.c | ||
sa1100-flash.c | ||
sbc8240.c | ||
sbc_gxx.c | ||
sc520cdp.c | ||
scb2_flash.c | ||
scx200_docflash.c | ||
sharpsl-flash.c | ||
solutionengine.c | ||
sun_uflash.c | ||
tqm8xxl.c | ||
ts5500_flash.c | ||
tsunami_flash.c | ||
uclinux.c | ||
vmax301.c | ||
vmu-flash.c | ||
wr_sbc82xx_flash.c |