diff options
| -rw-r--r-- | drivers/power/bq27x00_battery.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/power/bq27x00_battery.c b/drivers/power/bq27x00_battery.c index 8c1546b7d37..9a491f027a2 100644 --- a/drivers/power/bq27x00_battery.c +++ b/drivers/power/bq27x00_battery.c @@ -1331,7 +1331,7 @@ static int bq27x00_battery_get_property(struct power_supply *psy,  	struct bq27x00_device_info *di = to_bq27x00_device_info(psy);  	mutex_lock(&di->lock); -	if (time_is_before_jiffies(di->last_update + 5 * HZ)) { +	if (time_is_before_jiffies(di->last_update + HZ)) {  		cancel_delayed_work_sync(&di->work);  		bq27x00_battery_poll(&di->work.work);  	} |