mirror of
https://github.com/torvalds/linux.git
synced 2026-09-08 00:42:03 +02:00
regulator: twl6030: Use of_device_get_match_data()
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>
This commit is contained in:
parent
67cc7ca316
commit
7085180d6a
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user