diff options
author | Rhyland Klein <rklein@nvidia.com> | 2016-06-22 18:45:52 +0300 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2016-07-01 23:44:34 +0300 |
commit | e380538529e83c5d3fd27e8cbfcc1f9799cb6bbb (patch) | |
tree | a3893523e57344dd71c906c137987ff233bd31b4 /include/linux/power_supply.h | |
parent | eee1d077f0d74bcd411c18148a31a5d3aab42284 (diff) | |
download | linux-e380538529e83c5d3fd27e8cbfcc1f9799cb6bbb.tar.xz |
power_supply: fix return value of get_property
power_supply_get_property() should ideally return -EAGAIN if it is
called while the power_supply is being registered. There was no way
previously to determine if use_cnt == 0 meant that the power_supply
wasn't fully registered yet, or if it had already been unregistered.
Add a new boolean to the power_supply struct to simply show if
registration is completed. Lastly, modify the check in
power_supply_show_property() to also ignore -EAGAIN when so it
doesn't complain about not returning the property.
Signed-off-by: Rhyland Klein <rklein@nvidia.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
Diffstat (limited to 'include/linux/power_supply.h')
-rw-r--r-- | include/linux/power_supply.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/power_supply.h b/include/linux/power_supply.h index 751061790626..3965503315ef 100644 --- a/include/linux/power_supply.h +++ b/include/linux/power_supply.h @@ -248,6 +248,7 @@ struct power_supply { struct delayed_work deferred_register_work; spinlock_t changed_lock; bool changed; + bool initialized; atomic_t use_cnt; #ifdef CONFIG_THERMAL struct thermal_zone_device *tzd; |