You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
regulator: 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> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
committed by
Mark Brown
parent
5eb9f2b963
commit
a5023574d1
@@ -394,7 +394,7 @@ static int pm8607_regulator_dt_init(struct platform_device *pdev,
|
||||
#define pm8607_regulator_dt_init(x, y, z) (-1)
|
||||
#endif
|
||||
|
||||
static int __devinit pm8607_regulator_probe(struct platform_device *pdev)
|
||||
static int pm8607_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct pm860x_chip *chip = dev_get_drvdata(pdev->dev.parent);
|
||||
struct pm8607_regulator_info *info = NULL;
|
||||
|
||||
@@ -494,7 +494,7 @@ ab3100_regulator_desc[AB3100_NUM_REGULATORS] = {
|
||||
* for all the different regulators.
|
||||
*/
|
||||
|
||||
static int __devinit ab3100_regulators_probe(struct platform_device *pdev)
|
||||
static int ab3100_regulators_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct ab3100_platform_data *plfdata = pdev->dev.platform_data;
|
||||
struct regulator_config config = { };
|
||||
|
||||
@@ -641,7 +641,7 @@ static struct ab8500_reg_init ab8500_reg_init[] = {
|
||||
REG_INIT(AB8500_REGUCTRLDISCH2, 0x04, 0x44, 0x16),
|
||||
};
|
||||
|
||||
static __devinit int
|
||||
static int
|
||||
ab8500_regulator_init_registers(struct platform_device *pdev, int id, int value)
|
||||
{
|
||||
int err;
|
||||
@@ -676,7 +676,7 @@ ab8500_regulator_init_registers(struct platform_device *pdev, int id, int value)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static __devinit int ab8500_regulator_register(struct platform_device *pdev,
|
||||
static int ab8500_regulator_register(struct platform_device *pdev,
|
||||
struct regulator_init_data *init_data,
|
||||
int id,
|
||||
struct device_node *np)
|
||||
@@ -735,7 +735,7 @@ static struct of_regulator_match ab8500_regulator_matches[] = {
|
||||
{ .name = "ab8500_ldo_ana", .driver_data = (void *) AB8500_LDO_ANA, },
|
||||
};
|
||||
|
||||
static __devinit int
|
||||
static int
|
||||
ab8500_regulator_of_probe(struct platform_device *pdev, struct device_node *np)
|
||||
{
|
||||
int err, i;
|
||||
@@ -751,7 +751,7 @@ ab8500_regulator_of_probe(struct platform_device *pdev, struct device_node *np)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static __devinit int ab8500_regulator_probe(struct platform_device *pdev)
|
||||
static int ab8500_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct ab8500 *ab8500 = dev_get_drvdata(pdev->dev.parent);
|
||||
struct ab8500_platform_data *pdata;
|
||||
|
||||
@@ -211,7 +211,7 @@ static const struct i2c_device_id ad5398_id[] = {
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ad5398_id);
|
||||
|
||||
static int __devinit ad5398_probe(struct i2c_client *client,
|
||||
static int ad5398_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct regulator_init_data *init_data = client->dev.platform_data;
|
||||
|
||||
@@ -87,7 +87,7 @@ static struct regulator_ops anatop_rops = {
|
||||
.map_voltage = regulator_map_voltage_linear,
|
||||
};
|
||||
|
||||
static int __devinit anatop_regulator_probe(struct platform_device *pdev)
|
||||
static int anatop_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
struct device_node *np = dev->of_node;
|
||||
|
||||
@@ -67,7 +67,7 @@ static const struct regulator_init_data arizona_ldo1_default = {
|
||||
.num_consumer_supplies = 1,
|
||||
};
|
||||
|
||||
static __devinit int arizona_ldo1_probe(struct platform_device *pdev)
|
||||
static int arizona_ldo1_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
|
||||
struct regulator_config config = { };
|
||||
|
||||
@@ -115,7 +115,7 @@ static const struct regulator_init_data arizona_micsupp_default = {
|
||||
.num_consumer_supplies = 1,
|
||||
};
|
||||
|
||||
static __devinit int arizona_micsupp_probe(struct platform_device *pdev)
|
||||
static int arizona_micsupp_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
|
||||
struct regulator_config config = { };
|
||||
|
||||
@@ -460,7 +460,7 @@ static inline struct da903x_regulator_info *find_regulator_info(int id)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int __devinit da903x_regulator_probe(struct platform_device *pdev)
|
||||
static int da903x_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct da903x_regulator_info *ri = NULL;
|
||||
struct regulator_dev *rdev;
|
||||
|
||||
@@ -365,7 +365,7 @@ static inline struct da9052_regulator_info *find_regulator_info(u8 chip_id,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int __devinit da9052_regulator_probe(struct platform_device *pdev)
|
||||
static int da9052_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct regulator_config config = { };
|
||||
struct da9052_regulator *regulator;
|
||||
|
||||
@@ -412,7 +412,7 @@ dbx500_regulator_info[DB8500_NUM_REGULATORS] = {
|
||||
},
|
||||
};
|
||||
|
||||
static __devinit int db8500_regulator_register(struct platform_device *pdev,
|
||||
static int db8500_regulator_register(struct platform_device *pdev,
|
||||
struct regulator_init_data *init_data,
|
||||
int id,
|
||||
struct device_node *np)
|
||||
@@ -474,7 +474,7 @@ static struct of_regulator_match db8500_regulator_matches[] = {
|
||||
{ .name = "db8500_esram34_ret", .driver_data = (void *) DB8500_REGULATOR_SWITCH_ESRAM34RET, },
|
||||
};
|
||||
|
||||
static __devinit int
|
||||
static int
|
||||
db8500_regulator_of_probe(struct platform_device *pdev,
|
||||
struct device_node *np)
|
||||
{
|
||||
@@ -491,7 +491,7 @@ db8500_regulator_of_probe(struct platform_device *pdev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __devinit db8500_regulator_probe(struct platform_device *pdev)
|
||||
static int db8500_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct regulator_init_data *db8500_init_data =
|
||||
dev_get_platdata(&pdev->dev);
|
||||
|
||||
@@ -173,7 +173,7 @@ int __attribute__((weak)) dbx500_regulator_testcase(
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __devinit
|
||||
int
|
||||
ux500_regulator_debug_init(struct platform_device *pdev,
|
||||
struct dbx500_regulator_info *regulator_info,
|
||||
int num_regulators)
|
||||
|
||||
@@ -37,7 +37,7 @@ static struct regulator_desc dummy_desc = {
|
||||
.ops = &dummy_ops,
|
||||
};
|
||||
|
||||
static int __devinit dummy_regulator_probe(struct platform_device *pdev)
|
||||
static int dummy_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct regulator_config config = { };
|
||||
int ret;
|
||||
|
||||
@@ -230,7 +230,7 @@ static struct regmap_config fan53555_regmap_config = {
|
||||
.val_bits = 8,
|
||||
};
|
||||
|
||||
static int __devinit fan53555_regulator_probe(struct i2c_client *client,
|
||||
static int fan53555_regulator_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct fan53555_device_info *di;
|
||||
|
||||
@@ -134,7 +134,7 @@ static struct regulator_ops fixed_voltage_ops = {
|
||||
.list_voltage = fixed_voltage_list_voltage,
|
||||
};
|
||||
|
||||
static int __devinit reg_fixed_voltage_probe(struct platform_device *pdev)
|
||||
static int reg_fixed_voltage_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct fixed_voltage_config *config;
|
||||
struct fixed_voltage_data *drvdata;
|
||||
|
||||
@@ -220,7 +220,7 @@ static struct regulator_ops gpio_regulator_current_ops = {
|
||||
.set_current_limit = gpio_regulator_set_current_limit,
|
||||
};
|
||||
|
||||
static int __devinit gpio_regulator_probe(struct platform_device *pdev)
|
||||
static int gpio_regulator_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct gpio_regulator_config *config = pdev->dev.platform_data;
|
||||
struct device_node *np = pdev->dev.of_node;
|
||||
|
||||
@@ -106,7 +106,7 @@ static const struct regulator_desc isl_rd[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __devinit isl6271a_probe(struct i2c_client *i2c,
|
||||
static int isl6271a_probe(struct i2c_client *i2c,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct regulator_config config = { };
|
||||
|
||||
@@ -386,7 +386,7 @@ static int lp3971_set_bits(struct lp3971 *lp3971, u8 reg, u16 mask, u16 val)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int __devinit setup_regulators(struct lp3971 *lp3971,
|
||||
static int setup_regulators(struct lp3971 *lp3971,
|
||||
struct lp3971_platform_data *pdata)
|
||||
{
|
||||
int i, err;
|
||||
@@ -429,7 +429,7 @@ err_nomem:
|
||||
return err;
|
||||
}
|
||||
|
||||
static int __devinit lp3971_i2c_probe(struct i2c_client *i2c,
|
||||
static int lp3971_i2c_probe(struct i2c_client *i2c,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct lp3971 *lp3971;
|
||||
|
||||
@@ -481,7 +481,7 @@ static const struct regulator_desc regulators[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __devinit setup_regulators(struct lp3972 *lp3972,
|
||||
static int setup_regulators(struct lp3972 *lp3972,
|
||||
struct lp3972_platform_data *pdata)
|
||||
{
|
||||
int i, err;
|
||||
@@ -523,7 +523,7 @@ err_nomem:
|
||||
return err;
|
||||
}
|
||||
|
||||
static int __devinit lp3972_i2c_probe(struct i2c_client *i2c,
|
||||
static int lp3972_i2c_probe(struct i2c_client *i2c,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct lp3972 *lp3972;
|
||||
|
||||
@@ -504,7 +504,7 @@ set_default_dvs_mode:
|
||||
default_dvs_mode[id]);
|
||||
}
|
||||
|
||||
static __devinit int lp8788_buck_probe(struct platform_device *pdev)
|
||||
static int lp8788_buck_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct lp8788 *lp = dev_get_drvdata(pdev->dev.parent);
|
||||
int id = pdev->id;
|
||||
|
||||
@@ -712,7 +712,7 @@ set_default_ldo_enable_mode:
|
||||
val[enable_id]);
|
||||
}
|
||||
|
||||
static __devinit int lp8788_dldo_probe(struct platform_device *pdev)
|
||||
static int lp8788_dldo_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct lp8788 *lp = dev_get_drvdata(pdev->dev.parent);
|
||||
int id = pdev->id;
|
||||
@@ -768,7 +768,7 @@ static struct platform_driver lp8788_dldo_driver = {
|
||||
},
|
||||
};
|
||||
|
||||
static __devinit int lp8788_aldo_probe(struct platform_device *pdev)
|
||||
static int lp8788_aldo_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct lp8788 *lp = dev_get_drvdata(pdev->dev.parent);
|
||||
int id = pdev->id;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user