Remove warnings from three i2c drivers.
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
                .name   = LP5521_DRIVER_NAME,
        },
        .probe          = lp5521_probe,
-       .remove         = __exit_p(lp5521_remove),
+       .remove         = __devexit_p(lp5521_remove),
 };
 
 static int __init lp5521_init(void)
 
        .suspend        = tsl2563_suspend,
        .resume         = tsl2563_resume,
        .probe          = tsl2563_probe,
-       .remove         = __exit_p(tsl2563_remove),
+       .remove         = __devexit_p(tsl2563_remove),
 };
 
 static int __init tsl2563_init(void)
 
                .name    = DRIVER_NAME,
        },
        .probe          = lm8323_probe,
-       .remove         = __exit_p(lm8323_remove),
+       .remove         = __devexit_p(lm8323_remove),
        .suspend        = lm8323_suspend,
        .resume         = lm8323_resume,
        .id_table       = lm8323_id,
 
                .name   = DRIVER_NAME,
        },
        .probe  = tea5761_i2c_driver_probe,
-       .remove = tea5761_i2c_driver_remove,
+       .remove = __devexit_p(tea5761_i2c_driver_remove),
 };
 
 static int __init tea5761_init(void)