i2c: tegra: Add devexit_p() for remove
authorShubhrajyoti Datta <omaplinuxkernel@gmail.com>
Tue, 20 Dec 2011 06:15:08 +0000 (11:45 +0530)
committerOlof Johansson <olof@lixom.net>
Tue, 7 Feb 2012 02:32:45 +0000 (18:32 -0800)
It was originally missed in the __devinit/__devexit annotations.

Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
drivers/i2c/busses/i2c-tegra.c

index 6381604..0ab4a95 100644 (file)
@@ -755,7 +755,7 @@ MODULE_DEVICE_TABLE(of, tegra_i2c_of_match);
 
 static struct platform_driver tegra_i2c_driver = {
        .probe   = tegra_i2c_probe,
-       .remove  = tegra_i2c_remove,
+       .remove  = __devexit_p(tegra_i2c_remove),
 #ifdef CONFIG_PM
        .suspend = tegra_i2c_suspend,
        .resume  = tegra_i2c_resume,