diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:23:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:20:19 -0500 |
commit | f791be492f76dea7b0641ed227a60eeb2fa7e255 (patch) | |
tree | 1b5348c9b5b47e0927d66cba269a441ac653e564 /drivers/mfd/ab3100-core.c | |
parent | 84449216b01f9c2b4c9b1882f9d6abba07b7b7ca (diff) |
mfd: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Cc: Peter Tyser <ptyser@xes-inc.com>
Cc: Daniel Walker <dwalker@fifo99.com>
Cc: Bryan Huntsman <bryanh@codeaurora.org>
Acked-by: David Brown <davidb@codeaurora.org>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/mfd/ab3100-core.c')
-rw-r--r-- | drivers/mfd/ab3100-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/ab3100-core.c b/drivers/mfd/ab3100-core.c index 8355d4ee6edd..84b2303bc770 100644 --- a/drivers/mfd/ab3100-core.c +++ b/drivers/mfd/ab3100-core.c | |||
@@ -708,7 +708,7 @@ ab3100_init_settings[] = { | |||
708 | }, | 708 | }, |
709 | }; | 709 | }; |
710 | 710 | ||
711 | static int __devinit ab3100_setup(struct ab3100 *ab3100) | 711 | static int ab3100_setup(struct ab3100 *ab3100) |
712 | { | 712 | { |
713 | int err = 0; | 713 | int err = 0; |
714 | int i; | 714 | int i; |
@@ -857,7 +857,7 @@ static const struct ab_family_id ids[] __devinitconst = { | |||
857 | }, | 857 | }, |
858 | }; | 858 | }; |
859 | 859 | ||
860 | static int __devinit ab3100_probe(struct i2c_client *client, | 860 | static int ab3100_probe(struct i2c_client *client, |
861 | const struct i2c_device_id *id) | 861 | const struct i2c_device_id *id) |
862 | { | 862 | { |
863 | struct ab3100 *ab3100; | 863 | struct ab3100 *ab3100; |