aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/tps65217-regulator.c
diff options
context:
space:
mode:
authorKeerthy <j-keerthy@ti.com>2017-08-30 14:59:10 +0530
committerLee Jones <lee.jones@linaro.org>2017-10-13 10:42:58 +0100
commit511cb17448d95e4277451cdee882e72b6a9a3099 (patch)
tree585e0da9c7c3a0dc7d2ca5d1e1bcd8df4f8bf8a0 /drivers/regulator/tps65217-regulator.c
parentdt-bindings: aspeed-scu: Add clock and reset properties (diff)
downloadlinux-dev-511cb17448d95e4277451cdee882e72b6a9a3099.tar.xz
linux-dev-511cb17448d95e4277451cdee882e72b6a9a3099.zip
mfd: tps65217: Introduce dependency on CONFIG_OF
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>
Diffstat (limited to 'drivers/regulator/tps65217-regulator.c')
-rw-r--r--drivers/regulator/tps65217-regulator.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/regulator/tps65217-regulator.c b/drivers/regulator/tps65217-regulator.c
index 5324dc9e6d6e..7b12e880d1ea 100644
--- a/drivers/regulator/tps65217-regulator.c
+++ b/drivers/regulator/tps65217-regulator.c
@@ -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);