From: Mark Brown Date: Mon, 30 Apr 2012 10:10:50 +0000 (+0100) Subject: ASoC: cs42l52: Remove duplicate module exit code X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=b9c374b26cfb8a052e846f77482c5e4e0548e081;p=~shefty%2Frdma-dev.git 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 --- diff --git a/sound/soc/codecs/cs42l52.c b/sound/soc/codecs/cs42l52.c index e7fefbd2600..703060daeac 100644 --- a/sound/soc/codecs/cs42l52.c +++ b/sound/soc/codecs/cs42l52.c @@ -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");