diff mbox

[RESEND] MTD: maps/pxa2xx_flash: fix build breakage

Message ID 49D201BC.3050404@compulab.co.il
State New, archived
Headers show

Commit Message

Mike Rapoport March 31, 2009, 11:42 a.m. UTC
LD      init/built-in.o
  LD      .tmp_vmlinux1
`pxa2xx_flash_remove' referenced in section `.data' of
drivers/built-in.o: defined in discarded section `.exit.text' of
drivers/built-in.o
make: *** [.tmp_vmlinux1] Error 1

Signed-off-by: Mike Rapoport <mike@compulab.co.il>
---
 drivers/mtd/maps/pxa2xx-flash.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Russell King - ARM Linux March 31, 2009, 6:45 p.m. UTC | #1
On Tue, Mar 31, 2009 at 02:42:52PM +0300, Mike Rapoport wrote:
>   LD      init/built-in.o
>   LD      .tmp_vmlinux1
> `pxa2xx_flash_remove' referenced in section `.data' of
> drivers/built-in.o: defined in discarded section `.exit.text' of
> drivers/built-in.o
> make: *** [.tmp_vmlinux1] Error 1

I've sent a whole raft of these to the cause of these several days ago
to lkml and the cause of this breakage... waiting for it to hit Linus'
tree.
diff mbox

Patch

diff --git a/drivers/mtd/maps/pxa2xx-flash.c b/drivers/mtd/maps/pxa2xx-flash.c
index e9026cb..572d32f 100644
--- a/drivers/mtd/maps/pxa2xx-flash.c
+++ b/drivers/mtd/maps/pxa2xx-flash.c
@@ -117,7 +117,7 @@  static int __init pxa2xx_flash_probe(struct platform_device *pdev)
 	return 0;
 }

-static int __exit pxa2xx_flash_remove(struct platform_device *dev)
+static int __devexit pxa2xx_flash_remove(struct platform_device *dev)
 {
 	struct pxa2xx_flash_info *info = platform_get_drvdata(dev);