diff options
Diffstat (limited to 'board/host')
-rw-r--r-- | board/host/charger.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/host/charger.c b/board/host/charger.c index d5396c7418..8a5a2e3c53 100644 --- a/board/host/charger.c +++ b/board/host/charger.c @@ -26,9 +26,9 @@ static const struct charger_info mock_charger_info = { #define OPTION_CHARGE_INHIBIT (1 << 0) -static uint32_t mock_option = 0; -static uint32_t mock_current = 0; -static uint32_t mock_voltage = 0; +static uint32_t mock_option; +static uint32_t mock_current; +static uint32_t mock_voltage; const struct charger_info *charger_get_info(void) { |