diff options
author | Saravana Kannan <saravanak@google.com> | 2019-11-15 03:04:38 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-11-15 15:04:20 +0300 |
commit | b59b654478093fa429ad4c7897ae29f201146a00 (patch) | |
tree | 22ddcac704f51369284ac40c2b6b5a4e09033b62 /drivers/regulator/internal.h | |
parent | 26c2c997aa1a6c5522f6619910ba025e53e69763 (diff) | |
download | linux-b59b654478093fa429ad4c7897ae29f201146a00.tar.xz |
regulator: core: Don't try to remove device links if add failed
device_link_add() might not always succeed depending on the type of
device link and the rest of the dependencies in the system. If
device_link_add() didn't succeed, then we shouldn't try to remove the
link later on as it might remove a link someone else created.
Signed-off-by: Saravana Kannan <saravanak@google.com>
Link: https://lore.kernel.org/r/20191115000438.45970-1-saravanak@google.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/internal.h')
-rw-r--r-- | drivers/regulator/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/internal.h b/drivers/regulator/internal.h index 83ae442f515b..2391b565ef11 100644 --- a/drivers/regulator/internal.h +++ b/drivers/regulator/internal.h @@ -36,6 +36,7 @@ struct regulator { struct list_head list; unsigned int always_on:1; unsigned int bypass:1; + unsigned int device_link:1; int uA_load; unsigned int enable_count; unsigned int deferred_disables; |