Commit 45fd357a authored by Brian Norris's avatar Brian Norris

mtd: docg3: remove invalid __exit annotations

The .remove callback may be used when detaching a device via sysfs, so
we can't expect to free up this memory.
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Acked-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr>
parent 95d70665
...@@ -1805,7 +1805,7 @@ static int __init doc_dbg_register(struct docg3 *docg3) ...@@ -1805,7 +1805,7 @@ static int __init doc_dbg_register(struct docg3 *docg3)
} }
} }
static void __exit doc_dbg_unregister(struct docg3 *docg3) static void doc_dbg_unregister(struct docg3 *docg3)
{ {
debugfs_remove_recursive(docg3->debugfs_root); debugfs_remove_recursive(docg3->debugfs_root);
} }
...@@ -2100,7 +2100,7 @@ static int __init docg3_probe(struct platform_device *pdev) ...@@ -2100,7 +2100,7 @@ static int __init docg3_probe(struct platform_device *pdev)
* *
* Returns 0 * Returns 0
*/ */
static int __exit docg3_release(struct platform_device *pdev) static int docg3_release(struct platform_device *pdev)
{ {
struct docg3_cascade *cascade = platform_get_drvdata(pdev); struct docg3_cascade *cascade = platform_get_drvdata(pdev);
struct docg3 *docg3 = cascade->floors[0]->priv; struct docg3 *docg3 = cascade->floors[0]->priv;
...@@ -2131,7 +2131,7 @@ static struct platform_driver g3_driver = { ...@@ -2131,7 +2131,7 @@ static struct platform_driver g3_driver = {
}, },
.suspend = docg3_suspend, .suspend = docg3_suspend,
.resume = docg3_resume, .resume = docg3_resume,
.remove = __exit_p(docg3_release), .remove = docg3_release,
}; };
module_platform_driver_probe(g3_driver, docg3_probe); module_platform_driver_probe(g3_driver, docg3_probe);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment