dect
/
linux-2.6
Archived
13
0
Fork 0

ASoC: cs42l52: Remove duplicate module exit code

In the conversion to module_init_i2c() the original open coded module
exit function was left.  Remove it.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
Mark Brown 2012-04-30 11:10:50 +01:00
parent dfe0f98b8d
commit b9c374b26c
1 changed files with 0 additions and 7 deletions

View File

@ -1287,13 +1287,6 @@ static struct i2c_driver cs42l52_i2c_driver = {
.remove = __devexit_p(cs42l52_i2c_remove),
};
static void __exit cs42l52_exit(void)
{
i2c_del_driver(&cs42l52_i2c_driver);
}
module_exit(cs42l52_exit);
module_i2c_driver(cs42l52_i2c_driver);
MODULE_DESCRIPTION("ASoC CS42L52 driver");