]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
regulator: core: increment open_count when regulator supply is set
authorLaxman Dewangan <ldewangan@nvidia.com>
Mon, 23 Jul 2012 15:05:46 +0000 (20:35 +0530)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Sat, 4 Aug 2012 10:58:39 +0000 (11:58 +0100)
When registering the regulator and setting supply for the regulator
then increment open_count to reflect correct number of users.

Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/core.c

index f092588a078c65b3d3951a55a8ef861a44a50146..b28221af648e60c0e3ba314a3f9c63251c6c73f4 100644 (file)
@@ -974,6 +974,7 @@ static int set_supply(struct regulator_dev *rdev,
                err = -ENOMEM;
                return err;
        }
+       supply_rdev->open_count++;
 
        return 0;
 }