From patchwork Mon May 18 08:08:01 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: plat_nand: add missing __devexit_p() Date: Sun, 17 May 2009 22:08:01 -0000 From: Mike Frysinger X-Patchwork-Id: 27345 Message-Id: <1242634081-16593-1-git-send-email-vapier@gentoo.org> To: linux-kernel@vger.kernel.org Cc: linux-mtd@lists.infradead.org The remove function uses __devexit, so the .remove assignment needs __devexit_p() to fix a build error with hotplug disabled. Signed-off-by: Mike Frysinger CC: linux-mtd@lists.infradead.org --- drivers/mtd/nand/plat_nand.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/nand/plat_nand.c b/drivers/mtd/nand/plat_nand.c index 86e1d08..28ffd4e 100644 --- a/drivers/mtd/nand/plat_nand.c +++ b/drivers/mtd/nand/plat_nand.c @@ -128,7 +128,7 @@ static int __devexit plat_nand_remove(struct platform_device *pdev) static struct platform_driver plat_nand_driver = { .probe = plat_nand_probe, - .remove = plat_nand_remove, + .remove = __devexit_p(plat_nand_remove), .driver = { .name = "gen_nand", .owner = THIS_MODULE,