]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
mfd: tps65217: Introduce dependency on CONFIG_OF
authorKeerthy <j-keerthy@ti.com>
Wed, 30 Aug 2017 09:29:10 +0000 (14:59 +0530)
committerLee Jones <lee.jones@linaro.org>
Fri, 13 Oct 2017 09:42:58 +0000 (10:42 +0100)
Currently the driver boots only via device tree hence add a
dependency on CONFIG_OF. This leaves with a bunch of unused code
so clean that up. This patch also makes use of probe_new function
in place of the probe function so as to avoid passing i2c_device_id.

Signed-off-by: Keerthy <j-keerthy@ti.com>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/Kconfig
drivers/mfd/tps65217.c
drivers/regulator/tps65217-regulator.c
drivers/video/backlight/tps65217_bl.c
include/linux/mfd/tps65217.h

index fc5e4fef89d222aa587473634bf056d9dee39578..b47876877c9c1fe5a619f60190781d4df0077c0e 100644 (file)
@@ -1338,7 +1338,7 @@ config MFD_TPS65090
 
 config MFD_TPS65217
        tristate "TI TPS65217 Power Management / White LED chips"
-       depends on I2C
+       depends on I2C && OF
        select MFD_CORE
        select REGMAP_I2C
        select IRQ_DOMAIN
index f769c7d4e335ac20da4db26ae5d7eb024d0b9987..7566ce4457a0167073826881954aec491fca6c34 100644 (file)
@@ -311,37 +311,20 @@ static const struct regmap_config tps65217_regmap_config = {
 };
 
 static const struct of_device_id tps65217_of_match[] = {
-       { .compatible = "ti,tps65217", .data = (void *)TPS65217 },
+       { .compatible = "ti,tps65217"},
        { /* sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, tps65217_of_match);
 
-static int tps65217_probe(struct i2c_client *client,
-                               const struct i2c_device_id *ids)
+static int tps65217_probe(struct i2c_client *client)
 {
        struct tps65217 *tps;
        unsigned int version;
-       unsigned long chip_id = ids->driver_data;
-       const struct of_device_id *match;
        bool status_off = false;
        int ret;
 
-       if (client->dev.of_node) {
-               match = of_match_device(tps65217_of_match, &client->dev);
-               if (!match) {
-                       dev_err(&client->dev,
-                               "Failed to find matching dt id\n");
-                       return -EINVAL;
-               }
-               chip_id = (unsigned long)match->data;
-               status_off = of_property_read_bool(client->dev.of_node,
-                                       "ti,pmic-shutdown-controller");
-       }
-
-       if (!chip_id) {
-               dev_err(&client->dev, "id is null.\n");
-               return -ENODEV;
-       }
+       status_off = of_property_read_bool(client->dev.of_node,
+                                          "ti,pmic-shutdown-controller");
 
        tps = devm_kzalloc(&client->dev, sizeof(*tps), GFP_KERNEL);
        if (!tps)
@@ -349,7 +332,6 @@ static int tps65217_probe(struct i2c_client *client,
 
        i2c_set_clientdata(client, tps);
        tps->dev = &client->dev;
-       tps->id = chip_id;
 
        tps->regmap = devm_regmap_init_i2c(client, &tps65217_regmap_config);
        if (IS_ERR(tps->regmap)) {
@@ -430,7 +412,7 @@ static struct i2c_driver tps65217_driver = {
                .of_match_table = tps65217_of_match,
        },
        .id_table       = tps65217_id_table,
-       .probe          = tps65217_probe,
+       .probe_new      = tps65217_probe,
        .remove         = tps65217_remove,
 };
 
index 5324dc9e6d6e67d763f4f65c9532fe39f2fd0a0c..7b12e880d1eae0d4f332119d82e510a643dc89e5 100644 (file)
@@ -228,11 +228,6 @@ static int tps65217_regulator_probe(struct platform_device *pdev)
        int i, ret;
        unsigned int val;
 
-       if (tps65217_chip_id(tps) != TPS65217) {
-               dev_err(&pdev->dev, "Invalid tps chip version\n");
-               return -ENODEV;
-       }
-
        /* Allocate memory for strobes */
        tps->strobes = devm_kzalloc(&pdev->dev, sizeof(u8) *
                                    TPS65217_NUM_REGULATOR, GFP_KERNEL);
index fd524ad860a57bd4ac11166eeef278ef306358a4..5ce8791f45231b7547379a937c569bc64e875878 100644 (file)
@@ -275,17 +275,9 @@ static int tps65217_bl_probe(struct platform_device *pdev)
        struct tps65217_bl_pdata *pdata;
        struct backlight_properties bl_props;
 
-       if (tps->dev->of_node) {
-               pdata = tps65217_bl_parse_dt(pdev);
-               if (IS_ERR(pdata))
-                       return PTR_ERR(pdata);
-       } else {
-               pdata = dev_get_platdata(&pdev->dev);
-               if (!pdata) {
-                       dev_err(&pdev->dev, "no platform data provided\n");
-                       return -EINVAL;
-               }
-       }
+       pdata = tps65217_bl_parse_dt(pdev);
+       if (IS_ERR(pdata))
+               return PTR_ERR(pdata);
 
        tps65217_bl = devm_kzalloc(&pdev->dev, sizeof(*tps65217_bl),
                                GFP_KERNEL);
index eac285756b37a918c1bfb11845b2a160f559618f..b5dd108421c8d876b7e55f7f85a17f77b0c37416 100644 (file)
@@ -263,7 +263,6 @@ struct tps65217_board {
 struct tps65217 {
        struct device *dev;
        struct tps65217_board *pdata;
-       unsigned long id;
        struct regulator_desc desc[TPS65217_NUM_REGULATOR];
        struct regmap *regmap;
        u8 *strobes;
@@ -278,11 +277,6 @@ static inline struct tps65217 *dev_to_tps65217(struct device *dev)
        return dev_get_drvdata(dev);
 }
 
-static inline unsigned long tps65217_chip_id(struct tps65217 *tps65217)
-{
-       return tps65217->id;
-}
-
 int tps65217_reg_read(struct tps65217 *tps, unsigned int reg,
                                        unsigned int *val);
 int tps65217_reg_write(struct tps65217 *tps, unsigned int reg,