Remove caching of charging and battery states in driver's state
container because the cached value was not used later.
Signed-off-by: Krzysztof Kozlowski <k.kozlow...@samsung.com>
---
 drivers/power/max14577_charger.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/drivers/power/max14577_charger.c b/drivers/power/max14577_charger.c
index ef4103ee6021..c72238aa011b 100644
--- a/drivers/power/max14577_charger.c
+++ b/drivers/power/max14577_charger.c
@@ -26,9 +26,6 @@ struct max14577_charger {
        struct max14577 *max14577;
        struct power_supply     charger;
 
-       unsigned int            charging_state;
-       unsigned int            battery_state;
-
        struct max14577_charger_platform_data   *pdata;
 };
 
@@ -89,7 +86,6 @@ static int max14577_get_charger_state(struct max14577_charger 
*chg)
        }
 
 state_set:
-       chg->charging_state = state;
        return state;
 }
 
@@ -167,7 +163,6 @@ static int max14577_get_battery_health(struct 
max14577_charger *chg)
        }
 
 state_set:
-       chg->battery_state = state;
        return state;
 }
 
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to