OSDN Git Service

regulator: twl6030: Use of_device_get_match_data()
authorAxel Lin <axel.lin@ingics.com>
Wed, 9 Jan 2019 09:30:49 +0000 (17:30 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 14 Jan 2019 11:50:41 +0000 (11:50 +0000)
Use of_device_get_match_data() to simplify the code a bit.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/twl6030-regulator.c

index 219cbd9..78b9645 100644 (file)
@@ -687,14 +687,9 @@ static int twlreg_probe(struct platform_device *pdev)
        struct regulator_init_data      *initdata;
        struct regulation_constraints   *c;
        struct regulator_dev            *rdev;
-       const struct of_device_id       *match;
        struct regulator_config         config = { };
 
-       match = of_match_device(twl_of_match, &pdev->dev);
-       if (!match)
-               return -ENODEV;
-
-       template = match->data;
+       template = of_device_get_match_data(&pdev->dev);
        if (!template)
                return -ENODEV;