]> git.karo-electronics.de Git - linux-beck.git/commitdiff
regulator: remove use of __devexit
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:26:10 +0000 (13:26 -0500)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 20 Nov 2012 01:53:38 +0000 (10:53 +0900)
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
56 files changed:
drivers/regulator/88pm8607.c
drivers/regulator/aat2870-regulator.c
drivers/regulator/ab3100.c
drivers/regulator/ab8500.c
drivers/regulator/ad5398.c
drivers/regulator/anatop-regulator.c
drivers/regulator/arizona-ldo1.c
drivers/regulator/arizona-micsupp.c
drivers/regulator/da903x.c
drivers/regulator/da9052-regulator.c
drivers/regulator/dbx500-prcmu.c
drivers/regulator/fan53555.c
drivers/regulator/fixed.c
drivers/regulator/gpio-regulator.c
drivers/regulator/isl6271a-regulator.c
drivers/regulator/lp3971.c
drivers/regulator/lp3972.c
drivers/regulator/lp872x.c
drivers/regulator/lp8788-buck.c
drivers/regulator/lp8788-ldo.c
drivers/regulator/max1586.c
drivers/regulator/max77686.c
drivers/regulator/max8649.c
drivers/regulator/max8660.c
drivers/regulator/max8907-regulator.c
drivers/regulator/max8925-regulator.c
drivers/regulator/max8952.c
drivers/regulator/max8997.c
drivers/regulator/max8998.c
drivers/regulator/mc13783-regulator.c
drivers/regulator/mc13892-regulator.c
drivers/regulator/palmas-regulator.c
drivers/regulator/pcap-regulator.c
drivers/regulator/pcf50633-regulator.c
drivers/regulator/rc5t583-regulator.c
drivers/regulator/s2mps11.c
drivers/regulator/s5m8767.c
drivers/regulator/tps51632-regulator.c
drivers/regulator/tps6105x-regulator.c
drivers/regulator/tps62360-regulator.c
drivers/regulator/tps65023-regulator.c
drivers/regulator/tps6507x-regulator.c
drivers/regulator/tps65090-regulator.c
drivers/regulator/tps65217-regulator.c
drivers/regulator/tps6586x-regulator.c
drivers/regulator/tps65910-regulator.c
drivers/regulator/tps65912-regulator.c
drivers/regulator/tps80031-regulator.c
drivers/regulator/twl-regulator.c
drivers/regulator/vexpress.c
drivers/regulator/virtual.c
drivers/regulator/wm831x-dcdc.c
drivers/regulator/wm831x-isink.c
drivers/regulator/wm831x-ldo.c
drivers/regulator/wm8400-regulator.c
drivers/regulator/wm8994-regulator.c

index c09b5d97f4e75545c13dcc3805db5bd40aa7b16e..2b557119adad4b11d63ec345c96b425183e691f3 100644 (file)
@@ -454,7 +454,7 @@ static int pm8607_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit pm8607_regulator_remove(struct platform_device *pdev)
+static int pm8607_regulator_remove(struct platform_device *pdev)
 {
        struct pm8607_regulator_info *info = platform_get_drvdata(pdev);
 
index 4285b304e2b5c615fd62ed00c9e9680bea935e5f..8b5876356db97da46cd5ac0dd59dccb4b2521361 100644 (file)
@@ -187,7 +187,7 @@ static int aat2870_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit aat2870_regulator_remove(struct platform_device *pdev)
+static int aat2870_regulator_remove(struct platform_device *pdev)
 {
        struct regulator_dev *rdev = platform_get_drvdata(pdev);
 
index 7a04d5fe4e93b67a62a17ac71e0333ef3bff772c..111ec69a3e9454a40fa96091e4a7bc679cfa5dd1 100644 (file)
@@ -571,7 +571,7 @@ static int ab3100_regulators_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit ab3100_regulators_remove(struct platform_device *pdev)
+static int ab3100_regulators_remove(struct platform_device *pdev)
 {
        int i;
 
index af81325b8e2f38bbae6e5638fa81d15c2f898391..09014f38a9481f8afb630ce8a5c5fdb513100380 100644 (file)
@@ -817,7 +817,7 @@ static int ab8500_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static __devexit int ab8500_regulator_remove(struct platform_device *pdev)
+static int ab8500_regulator_remove(struct platform_device *pdev)
 {
        int i;
 
index cd855d9ac38a23a6fe89a467641ea63e5d459e2a..6b981b5faa7015c53f10a463d7a53097edeab075 100644 (file)
@@ -256,7 +256,7 @@ err:
        return ret;
 }
 
-static int __devexit ad5398_remove(struct i2c_client *client)
+static int ad5398_remove(struct i2c_client *client)
 {
        struct ad5398_chip_info *chip = i2c_get_clientdata(client);
 
index a900c2992f259ea561900024e43c75c6b4bdffaa..1aa5246c79d90741a0ad56f8aacca2203e2f82f0 100644 (file)
@@ -186,7 +186,7 @@ anatop_probe_end:
        return ret;
 }
 
-static int __devexit anatop_regulator_remove(struct platform_device *pdev)
+static int anatop_regulator_remove(struct platform_device *pdev)
 {
        struct regulator_dev *rdev = platform_get_drvdata(pdev);
        struct anatop_regulator *sreg = rdev_get_drvdata(rdev);
index 7e9ad7cb86769ec5293c9c234461b9563faf3d09..b44fa6f0e9476315f3d9562988e687e691a285f9 100644 (file)
@@ -115,7 +115,7 @@ static int arizona_ldo1_probe(struct platform_device *pdev)
        return 0;
 }
 
-static __devexit int arizona_ldo1_remove(struct platform_device *pdev)
+static int arizona_ldo1_remove(struct platform_device *pdev)
 {
        struct arizona_ldo1 *ldo1 = platform_get_drvdata(pdev);
 
index 3c3631c044fd6d729d5c944930ff161600c00234..5ae2d3e794bf317b5d60c56fd1f28f294d4f1c88 100644 (file)
@@ -166,7 +166,7 @@ static int arizona_micsupp_probe(struct platform_device *pdev)
        return 0;
 }
 
-static __devexit int arizona_micsupp_remove(struct platform_device *pdev)
+static int arizona_micsupp_remove(struct platform_device *pdev)
 {
        struct arizona_micsupp *micsupp = platform_get_drvdata(pdev);
 
index ab4a6d677280ea6304500d091797ed8f3354d064..2afa5730f324ba1ef1bb068b5f63c79e41c11a8f 100644 (file)
@@ -499,7 +499,7 @@ static int da903x_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit da903x_regulator_remove(struct platform_device *pdev)
+static int da903x_regulator_remove(struct platform_device *pdev)
 {
        struct regulator_dev *rdev = platform_get_drvdata(pdev);
 
index ba703d80a21fbb9c8a6adbe5090cf685c8396a5b..d6fbfd3dced51062c0988554d8ed923a565efd1e 100644 (file)
@@ -430,7 +430,7 @@ static int da9052_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit da9052_regulator_remove(struct platform_device *pdev)
+static int da9052_regulator_remove(struct platform_device *pdev)
 {
        struct da9052_regulator *regulator = platform_get_drvdata(pdev);
 
index afc3e89940ed300454d5fd31b48b96b8e2e63aa0..261f3d2299bc0a5d2d074824211172be7a6b8448 100644 (file)
@@ -230,7 +230,7 @@ exit_no_debugfs:
        return -ENOMEM;
 }
 
-int __devexit ux500_regulator_debug_exit(void)
+int ux500_regulator_debug_exit(void)
 {
        debugfs_remove_recursive(rdebug.dir);
        kfree(rdebug.state_after_suspend);
index 199172a3bbfa4f76c5052530cc68f50bc0231677..9165b0c40ed32a6b4e8a851e5c81f9b1f68f8be0 100644 (file)
@@ -293,7 +293,7 @@ static int fan53555_regulator_probe(struct i2c_client *client,
 
 }
 
-static int __devexit fan53555_regulator_remove(struct i2c_client *client)
+static int fan53555_regulator_remove(struct i2c_client *client)
 {
        struct fan53555_device_info *di = i2c_get_clientdata(client);
 
index 5aa0be00cc31b8d522f63c2e70ffdbce261b63be..48d5b7608b00bd519cbb4c2434721335c91fa4d4 100644 (file)
@@ -234,7 +234,7 @@ err:
        return ret;
 }
 
-static int __devexit reg_fixed_voltage_remove(struct platform_device *pdev)
+static int reg_fixed_voltage_remove(struct platform_device *pdev)
 {
        struct fixed_voltage_data *drvdata = platform_get_drvdata(pdev);
 
index 5ffee5ec3660aa216d6f99bd78c39d6ef0c17ede..3ee79c83ae57e9395dd4d21c91e6b1d12312db82 100644 (file)
@@ -348,7 +348,7 @@ err:
        return ret;
 }
 
-static int __devexit gpio_regulator_remove(struct platform_device *pdev)
+static int gpio_regulator_remove(struct platform_device *pdev)
 {
        struct gpio_regulator_data *drvdata = platform_get_drvdata(pdev);
 
index 1732108dda4901f8d82b8eff10df62dc4636a2ce..d1e5bee2a26b210685290f7bb98d0a5138315a87 100644 (file)
@@ -151,7 +151,7 @@ error:
        return err;
 }
 
-static int __devexit isl6271a_remove(struct i2c_client *i2c)
+static int isl6271a_remove(struct i2c_client *i2c)
 {
        struct isl_pmic *pmic = i2c_get_clientdata(i2c);
        int i;
index 95b7299e3ed25efef22c0e232d235ce34c1b433d..5f68ff11a2985bb6519d0b5d4f2a8c1e89ce9e05 100644 (file)
@@ -472,7 +472,7 @@ err_detect:
        return ret;
 }
 
-static int __devexit lp3971_i2c_remove(struct i2c_client *i2c)
+static int lp3971_i2c_remove(struct i2c_client *i2c)
 {
        struct lp3971 *lp3971 = i2c_get_clientdata(i2c);
        int i;
index acf71beb1f57d3a2348a7798d8e57d50290ecf56..69c42c318b87c5506a4f1c9548bf1a303ddc3ae3 100644 (file)
@@ -569,7 +569,7 @@ err_detect:
        return ret;
 }
 
-static int __devexit lp3972_i2c_remove(struct i2c_client *i2c)
+static int lp3972_i2c_remove(struct i2c_client *i2c)
 {
        struct lp3972 *lp3972 = i2c_get_clientdata(i2c);
        int i;
index 622ad5e5bab0952f72bdaec5fea7fa0134a090da..9289ead715cab59d749c56222f605195051395db 100644 (file)
@@ -893,7 +893,7 @@ err_dev:
        return ret;
 }
 
-static int __devexit lp872x_remove(struct i2c_client *cl)
+static int lp872x_remove(struct i2c_client *cl)
 {
        struct lp872x *lp = i2c_get_clientdata(cl);
 
index 1a3623ac066c5c1009f057097fa29450316760d8..6cc02c35ddb5145f4eee79e6ad395c8f009abfec 100644 (file)
@@ -542,7 +542,7 @@ static int lp8788_buck_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit lp8788_buck_remove(struct platform_device *pdev)
+static int lp8788_buck_remove(struct platform_device *pdev)
 {
        struct lp8788_buck *buck = platform_get_drvdata(pdev);
 
index e69a5b62f443f9a822682a7b243136b4018b4924..26753a0137892c909cd323d80da2e9388cdf4519 100644 (file)
@@ -749,7 +749,7 @@ static int lp8788_dldo_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit lp8788_dldo_remove(struct platform_device *pdev)
+static int lp8788_dldo_remove(struct platform_device *pdev)
 {
        struct lp8788_ldo *ldo = platform_get_drvdata(pdev);
 
@@ -805,7 +805,7 @@ static int lp8788_aldo_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit lp8788_aldo_remove(struct platform_device *pdev)
+static int lp8788_aldo_remove(struct platform_device *pdev)
 {
        struct lp8788_ldo *ldo = platform_get_drvdata(pdev);
 
index 1609810a9a3dbfe7e44613059558153645614985..3a035ece83c1de49b7fea9d20e0eff134fcbf577 100644 (file)
@@ -188,7 +188,7 @@ err:
        return ret;
 }
 
-static int __devexit max1586_pmic_remove(struct i2c_client *client)
+static int max1586_pmic_remove(struct i2c_client *client)
 {
        struct max1586_data *max1586 = i2c_get_clientdata(client);
        int i;
index da028d055ec756b10fa21e32871b30578e0c8dec..cb99e9031a64242427283975cefce6a0b83191e8 100644 (file)
@@ -337,7 +337,7 @@ err:
        return ret;
 }
 
-static int __devexit max77686_pmic_remove(struct platform_device *pdev)
+static int max77686_pmic_remove(struct platform_device *pdev)
 {
        struct max77686_data *max77686 = platform_get_drvdata(pdev);
        int i;
index d4397f95f74143e5f7976e5a879256d26185188e..3ca14380f22db06aba4338544cf62967d48fa900 100644 (file)
@@ -271,7 +271,7 @@ static int max8649_regulator_probe(struct i2c_client *client,
        return 0;
 }
 
-static int __devexit max8649_regulator_remove(struct i2c_client *client)
+static int max8649_regulator_remove(struct i2c_client *client)
 {
        struct max8649_regulator_info *info = i2c_get_clientdata(client);
 
index a44589f36a31cc007b66ad85f0e1a69ca71e4a85..4d7c635c36c2d6cc92b1ecd8fafb9d533213ae21 100644 (file)
@@ -420,7 +420,7 @@ err_out:
        return ret;
 }
 
-static int __devexit max8660_remove(struct i2c_client *client)
+static int max8660_remove(struct i2c_client *client)
 {
        struct max8660 *max8660 = i2c_get_clientdata(client);
        int i;
index 99bae75970f18aae9a19672550b580705f4efb68..d1a77512d83e69501c2a4a3a3e8c3f09b75f7ba6 100644 (file)
@@ -368,7 +368,7 @@ err_unregister_regulator:
        return ret;
 }
 
-static __devexit int max8907_regulator_remove(struct platform_device *pdev)
+static int max8907_regulator_remove(struct platform_device *pdev)
 {
        struct max8907_regulator *pmic = platform_get_drvdata(pdev);
        int i;
index cd06708f4af4efe47eb92dce1911e1eeeab09877..446a854455535b4603fa2584f09498b0e557cc0e 100644 (file)
@@ -323,7 +323,7 @@ static int max8925_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit max8925_regulator_remove(struct platform_device *pdev)
+static int max8925_regulator_remove(struct platform_device *pdev)
 {
        struct regulator_dev *rdev = platform_get_drvdata(pdev);
 
index 21862080fdc878838373f88f8349b73a88801949..fc7935a19e3a143f996aeeb4879d4d8ba75f0e9b 100644 (file)
@@ -247,7 +247,7 @@ static int max8952_pmic_probe(struct i2c_client *client,
        return 0;
 }
 
-static int __devexit max8952_pmic_remove(struct i2c_client *client)
+static int max8952_pmic_remove(struct i2c_client *client)
 {
        struct max8952_data *max8952 = i2c_get_clientdata(client);
        struct max8952_platform_data *pdata = max8952->pdata;
index 323ec2b14edb48102c0634cfe955d2b941c68ade..cea9ec9093ebfda708119e1c54f961fd92f8443e 100644 (file)
@@ -1120,7 +1120,7 @@ err_out:
        return ret;
 }
 
-static int __devexit max8997_pmic_remove(struct platform_device *pdev)
+static int max8997_pmic_remove(struct platform_device *pdev)
 {
        struct max8997_data *max8997 = platform_get_drvdata(pdev);
        struct regulator_dev **rdev = max8997->rdev;
index d80ce6c58ee53f1bdcd77dcc35a2aa917efeff15..b821d08eb64ae84b643f2cfe93cd0764738d21c9 100644 (file)
@@ -818,7 +818,7 @@ err_out:
        return ret;
 }
 
-static int __devexit max8998_pmic_remove(struct platform_device *pdev)
+static int max8998_pmic_remove(struct platform_device *pdev)
 {
        struct max8998_data *max8998 = platform_get_drvdata(pdev);
        struct regulator_dev **rdev = max8998->rdev;
index 54f42b3d964c341a6239f60d72f8ed60935c4395..c46c6705cd74538af5b30c2c112cde1cedad4df2 100644 (file)
@@ -445,7 +445,7 @@ err:
        return ret;
 }
 
-static int __devexit mc13783_regulator_remove(struct platform_device *pdev)
+static int mc13783_regulator_remove(struct platform_device *pdev)
 {
        struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
        struct mc13xxx_regulator_platform_data *pdata =
index 9804a313da2f8f9c94aaddfc32aff3d0713c3714..0d84b1f33199ca5251c425ba898ffad4296da88f 100644 (file)
@@ -588,7 +588,7 @@ err_unlock:
        return ret;
 }
 
-static int __devexit mc13892_regulator_remove(struct platform_device *pdev)
+static int mc13892_regulator_remove(struct platform_device *pdev)
 {
        struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
        int i;
index b04774492bc0f9f3e7ea2cb70109fb96f3df45d2..3d445929cc80d8d6f9bbb199b0ceadb205edba0e 100644 (file)
@@ -868,7 +868,7 @@ err_unregister_regulator:
        return ret;
 }
 
-static int __devexit palmas_remove(struct platform_device *pdev)
+static int palmas_remove(struct platform_device *pdev)
 {
        struct palmas_pmic *pmic = platform_get_drvdata(pdev);
        int id;
index 4f3e445ec854b05748e3a65235ef50b679fdc754..4899342f1fc12cba02790a094c4be82f5ec30b15 100644 (file)
@@ -255,7 +255,7 @@ static int pcap_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit pcap_regulator_remove(struct platform_device *pdev)
+static int pcap_regulator_remove(struct platform_device *pdev)
 {
        struct regulator_dev *rdev = platform_get_drvdata(pdev);
 
index 51cb1bb3a2a78496151f858b12452e9eb46738fd..d776f518aa0dc0a41259844dacd98bd5d92a377c 100644 (file)
@@ -222,7 +222,7 @@ static int pcf50633_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit pcf50633_regulator_remove(struct platform_device *pdev)
+static int pcf50633_regulator_remove(struct platform_device *pdev)
 {
        struct regulator_dev *rdev = platform_get_drvdata(pdev);
 
index 7f83f33454054366d4da472e0b0157f14eb1617c..9e6f78694bf16d66d13e9ea95e160ed631603742 100644 (file)
@@ -198,7 +198,7 @@ clean_exit:
        return ret;
 }
 
-static int __devexit rc5t583_regulator_remove(struct platform_device *pdev)
+static int rc5t583_regulator_remove(struct platform_device *pdev)
 {
        struct rc5t583_regulator *regs = platform_get_drvdata(pdev);
        int id;
index c918e99f937a65fb4318abb91f4fba32376c40cb..85fc086c1319c871570ffe6ef4379ed5e2b19641 100644 (file)
@@ -307,7 +307,7 @@ err:
        return ret;
 }
 
-static int __devexit s2mps11_pmic_remove(struct platform_device *pdev)
+static int s2mps11_pmic_remove(struct platform_device *pdev)
 {
        struct s2mps11_info *s2mps11 = platform_get_drvdata(pdev);
        int i;
index 15f3ccac758c4ec2663ded571301ac79cc949e04..2b822bec3c2decf898d22371d67918c5d85db10e 100644 (file)
@@ -773,7 +773,7 @@ err:
        return ret;
 }
 
-static int __devexit s5m8767_pmic_remove(struct platform_device *pdev)
+static int s5m8767_pmic_remove(struct platform_device *pdev)
 {
        struct s5m8767_info *s5m8767 = platform_get_drvdata(pdev);
        struct regulator_dev **rdev = s5m8767->rdev;
index ff79a468cd995b58c9cc761c46b2f74986dc0988..a9c3a4a6cca07ce5e92372a2f18ea9d3050ea61a 100644 (file)
@@ -290,7 +290,7 @@ static int tps51632_probe(struct i2c_client *client,
        return 0;
 }
 
-static int __devexit tps51632_remove(struct i2c_client *client)
+static int tps51632_remove(struct i2c_client *client)
 {
        struct tps51632_chip *tps = i2c_get_clientdata(client);
 
index f8c0c9273399811774a3193b14979b267fc0da7b..ec9453ffb77fd561ec1c2d6c3591b7302bc16b5f 100644 (file)
@@ -159,7 +159,7 @@ static int tps6105x_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit tps6105x_regulator_remove(struct platform_device *pdev)
+static int tps6105x_regulator_remove(struct platform_device *pdev)
 {
        struct tps6105x *tps6105x = dev_get_platdata(&pdev->dev);
        regulator_unregister(tps6105x->regulator);
index 7fba9ffab22c186b28200c647da577ab65ce55c5..acbd63fde4153fb7ffe9cf3a8b22dd25aad43383 100644 (file)
@@ -490,7 +490,7 @@ static int tps62360_probe(struct i2c_client *client,
  *
  * Unregister TPS driver as an i2c client device driver
  */
-static int __devexit tps62360_remove(struct i2c_client *client)
+static int tps62360_remove(struct i2c_client *client)
 {
        struct tps62360_chip *tps = i2c_get_clientdata(client);
 
index a039206fd90a7ed8ffa17273f9c13a59bcea4f81..9b9af6d889c83214b06e9aa6b54767ede61289b1 100644 (file)
@@ -319,7 +319,7 @@ static int tps_65023_probe(struct i2c_client *client,
        return error;
 }
 
-static int __devexit tps_65023_remove(struct i2c_client *client)
+static int tps_65023_remove(struct i2c_client *client)
 {
        struct tps_pmic *tps = i2c_get_clientdata(client);
        int i;
index 6c45d5af6f9323dcfd0e06bcaa5b951921a132c3..0233cfb5656058a57ccd0dce40591701c16ce8b6 100644 (file)
@@ -439,7 +439,7 @@ fail:
        return error;
 }
 
-static int __devexit tps6507x_pmic_remove(struct platform_device *pdev)
+static int tps6507x_pmic_remove(struct platform_device *pdev)
 {
        struct tps6507x_dev *tps6507x_dev = platform_get_drvdata(pdev);
        struct tps6507x_pmic *tps = tps6507x_dev->pmic;
index cc5be1f512a8386962e3f1b0a2ef777cdc9bb23c..3974a992220f2c963f824d907d6ba0f44aaac799 100644 (file)
@@ -232,7 +232,7 @@ scrub:
        return ret;
 }
 
-static int __devexit tps65090_regulator_remove(struct platform_device *pdev)
+static int tps65090_regulator_remove(struct platform_device *pdev)
 {
        struct tps65090_regulator *pmic = platform_get_drvdata(pdev);
        struct tps65090_regulator *ri;
index e34fb8689091caf7bdca4b682c9d4e871a8694f0..73dce76641265590179cb2440e75ad71ffd722d0 100644 (file)
@@ -397,7 +397,7 @@ err_unregister_regulator:
        return ret;
 }
 
-static int __devexit tps65217_regulator_remove(struct platform_device *pdev)
+static int tps65217_regulator_remove(struct platform_device *pdev)
 {
        struct tps65217 *tps = platform_get_drvdata(pdev);
        unsigned int i;
index 7206f4e3e760891c27f689b44bab1e014b352215..9ce44109f2aaddf8af175972fb562faf8f06ed96 100644 (file)
@@ -461,7 +461,7 @@ fail:
        return err;
 }
 
-static int __devexit tps6586x_regulator_remove(struct platform_device *pdev)
+static int tps6586x_regulator_remove(struct platform_device *pdev)
 {
        struct regulator_dev **rdev = platform_get_drvdata(pdev);
        int id = TPS6586X_ID_MAX_REGULATOR;
index 276eeb5c12cac9ff4bdfab0bfd11cb2db089fe4c..6b77bbf32ebcf7db26e1b1d85d05268efd7fa1eb 100644 (file)
@@ -1184,7 +1184,7 @@ err_unregister_regulator:
        return err;
 }
 
-static int __devexit tps65910_remove(struct platform_device *pdev)
+static int tps65910_remove(struct platform_device *pdev)
 {
        struct tps65910_reg *pmic = platform_get_drvdata(pdev);
        int i;
index 35b2a6fb861415d976d8bcf47847ad239fc32b52..17e994e47dc139c3117a8affe76eef64b5e092e1 100644 (file)
@@ -525,7 +525,7 @@ err:
        return err;
 }
 
-static int __devexit tps65912_remove(struct platform_device *pdev)
+static int tps65912_remove(struct platform_device *pdev)
 {
        struct tps65912_reg *tps65912_reg = platform_get_drvdata(pdev);
        int i;
index cdfcbc9c51a372e21aac99eca33f68ca86e3fb5f..127d1754fcd3ae0cc83b57d65d0566dd7f271278 100644 (file)
@@ -753,7 +753,7 @@ fail:
        return ret;
 }
 
-static int __devexit tps80031_regulator_remove(struct platform_device *pdev)
+static int tps80031_regulator_remove(struct platform_device *pdev)
 {
        struct tps80031_regulator *pmic = platform_get_drvdata(pdev);
        struct tps80031_regulator *ri = NULL;
index 66e62a2cb244bb158c6413d9890f045ae9e9d2c8..493c8c6a241f41b1820786b993b342816002bc1c 100644 (file)
@@ -1241,7 +1241,7 @@ static int twlreg_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit twlreg_remove(struct platform_device *pdev)
+static int twlreg_remove(struct platform_device *pdev)
 {
        struct regulator_dev *rdev = platform_get_drvdata(pdev);
        struct twlreg_info *info = rdev->reg_data;
index 405620197a23b8664d29a661968f7bec03a28c60..4668c7f8133d7ecff17261d0af3640bbe5ba5cf4 100644 (file)
@@ -114,7 +114,7 @@ error_kzalloc:
        return err;
 }
 
-static int __devexit vexpress_regulator_remove(struct platform_device *pdev)
+static int vexpress_regulator_remove(struct platform_device *pdev)
 {
        struct vexpress_regulator *reg = platform_get_drvdata(pdev);
 
index be0dd182eab9df73e087befffbaa724d74aec51f..01c66e9712a4aa236ba36ed409abbbce51cd66f2 100644 (file)
@@ -321,7 +321,7 @@ static int regulator_virtual_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit regulator_virtual_remove(struct platform_device *pdev)
+static int regulator_virtual_remove(struct platform_device *pdev)
 {
        struct virtual_consumer_data *drvdata = platform_get_drvdata(pdev);
 
index 54e9778f5080b5b9eeadcc04f43313180d07e3a2..33297bcce3f86fcc511fd01dd5cc0c84ae036ff5 100644 (file)
@@ -562,7 +562,7 @@ err:
        return ret;
 }
 
-static __devexit int wm831x_buckv_remove(struct platform_device *pdev)
+static int wm831x_buckv_remove(struct platform_device *pdev)
 {
        struct wm831x_dcdc *dcdc = platform_get_drvdata(pdev);
        struct wm831x *wm831x = dcdc->wm831x;
@@ -710,7 +710,7 @@ err:
        return ret;
 }
 
-static __devexit int wm831x_buckp_remove(struct platform_device *pdev)
+static int wm831x_buckp_remove(struct platform_device *pdev)
 {
        struct wm831x_dcdc *dcdc = platform_get_drvdata(pdev);
 
@@ -845,7 +845,7 @@ err:
        return ret;
 }
 
-static __devexit int wm831x_boostp_remove(struct platform_device *pdev)
+static int wm831x_boostp_remove(struct platform_device *pdev)
 {
        struct wm831x_dcdc *dcdc = platform_get_drvdata(pdev);
 
@@ -936,7 +936,7 @@ err:
        return ret;
 }
 
-static __devexit int wm831x_epe_remove(struct platform_device *pdev)
+static int wm831x_epe_remove(struct platform_device *pdev)
 {
        struct wm831x_dcdc *dcdc = platform_get_drvdata(pdev);
 
index ac4bdffef2eaf02436f8f0c69f32c1374bef0cf6..68586ee3e1cb18197f64ea68d7cbee9e963408fc 100644 (file)
@@ -221,7 +221,7 @@ err:
        return ret;
 }
 
-static __devexit int wm831x_isink_remove(struct platform_device *pdev)
+static int wm831x_isink_remove(struct platform_device *pdev)
 {
        struct wm831x_isink *isink = platform_get_drvdata(pdev);
 
index 90f657fe24aed00426a67a72b1f861caf4cbb1d0..1ec379a9a95c88807c9987b23568e892b14bdc1a 100644 (file)
@@ -334,7 +334,7 @@ err:
        return ret;
 }
 
-static __devexit int wm831x_gp_ldo_remove(struct platform_device *pdev)
+static int wm831x_gp_ldo_remove(struct platform_device *pdev)
 {
        struct wm831x_ldo *ldo = platform_get_drvdata(pdev);
 
@@ -590,7 +590,7 @@ err:
        return ret;
 }
 
-static __devexit int wm831x_aldo_remove(struct platform_device *pdev)
+static int wm831x_aldo_remove(struct platform_device *pdev)
 {
        struct wm831x_ldo *ldo = platform_get_drvdata(pdev);
 
@@ -737,7 +737,7 @@ err:
        return ret;
 }
 
-static __devexit int wm831x_alive_ldo_remove(struct platform_device *pdev)
+static int wm831x_alive_ldo_remove(struct platform_device *pdev)
 {
        struct wm831x_ldo *ldo = platform_get_drvdata(pdev);
 
index c155ec3159b9d770de70b6362b2eaec1cd2c5f60..c6a32ea80b9d2aa063408f6ac38d11622253f477 100644 (file)
@@ -246,7 +246,7 @@ static int wm8400_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit wm8400_regulator_remove(struct platform_device *pdev)
+static int wm8400_regulator_remove(struct platform_device *pdev)
 {
        struct regulator_dev *rdev = platform_get_drvdata(pdev);
 
index ea0fdd57fbbe05d02205934c59171090aec6984e..6ff872342648cc2cacbf23565826715b0d3bbff7 100644 (file)
@@ -142,7 +142,7 @@ err:
        return ret;
 }
 
-static __devexit int wm8994_ldo_remove(struct platform_device *pdev)
+static int wm8994_ldo_remove(struct platform_device *pdev)
 {
        struct wm8994_ldo *ldo = platform_get_drvdata(pdev);