diff options
author | Axel Lin <[email protected]> | 2021-06-16 11:44:58 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2021-06-16 15:41:19 +0100 |
commit | 830c364f4a2299e8215c40f0a2ba9229c0fdeede (patch) | |
tree | 6b427076c3dc681960f7b527828272a63667c0d5 | |
parent | 31a89d297e196472875dc7d4a8f5dd0aaefcc0b4 (diff) |
regulator: sy7636a: Use rdev_get_drvdata at proper place
At the context with *rdev, use rdev_get_drvdata() is more intuitive.
Signed-off-by: Axel Lin <[email protected]>
Reviewed-by: Alistair Francis <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/regulator/sy7636a-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/sy7636a-regulator.c b/drivers/regulator/sy7636a-regulator.c index c71c0a007d95..e021ae08cbaa 100644 --- a/drivers/regulator/sy7636a-regulator.c +++ b/drivers/regulator/sy7636a-regulator.c @@ -35,7 +35,7 @@ static int sy7636a_get_vcom_voltage_op(struct regulator_dev *rdev) static int sy7636a_get_status(struct regulator_dev *rdev) { - struct sy7636a *sy7636a = dev_get_drvdata(rdev->dev.parent); + struct sy7636a *sy7636a = rdev_get_drvdata(rdev); int ret = 0; ret = gpiod_get_value_cansleep(sy7636a->pgood_gpio); |