diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:23:21 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-26 15:57:24 -0800 |
commit | 44f34fd4a7f80439f14bdd2df032b0b4427c4ab0 (patch) | |
tree | 8f7998a0ed0555efb39c7d70ed783cbd90337a20 /drivers/extcon/extcon-max8997.c | |
parent | 93ed0327808f7d7ef0fc90114c3457629dd683c1 (diff) | |
download | blackbird-op-linux-44f34fd4a7f80439f14bdd2df032b0b4427c4ab0.tar.gz blackbird-op-linux-44f34fd4a7f80439f14bdd2df032b0b4427c4ab0.zip |
extcon: 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: MyungJoo Ham <myungjoo.ham@samsung.com>
Cc: Chanwoo Choi <cw00.choi@samsung.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/extcon/extcon-max8997.c')
-rw-r--r-- | drivers/extcon/extcon-max8997.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-max8997.c b/drivers/extcon/extcon-max8997.c index b85189b20b97..49812991c5e6 100644 --- a/drivers/extcon/extcon-max8997.c +++ b/drivers/extcon/extcon-max8997.c @@ -426,7 +426,7 @@ static void max8997_muic_detect_dev(struct max8997_muic_info *info) max8997_muic_handle_charger_type(info, chg_type); } -static int __devinit max8997_muic_probe(struct platform_device *pdev) +static int max8997_muic_probe(struct platform_device *pdev) { struct max8997_dev *max8997 = dev_get_drvdata(pdev->dev.parent); struct max8997_platform_data *pdata = dev_get_platdata(max8997->dev); |