From patchwork Thu Nov 19 21:32:46 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Timon Baetz X-Patchwork-Id: 328822 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D0308C388F9 for ; Thu, 19 Nov 2020 21:33:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C3CD3221FC for ; Thu, 19 Nov 2020 21:32:59 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=protonmail.com header.i=@protonmail.com header.b="j1Oh3LXx" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726105AbgKSVc7 (ORCPT ); Thu, 19 Nov 2020 16:32:59 -0500 Received: from mail-02.mail-europe.com ([51.89.119.103]:33136 "EHLO mail-02.mail-europe.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725877AbgKSVc7 (ORCPT ); Thu, 19 Nov 2020 16:32:59 -0500 Date: Thu, 19 Nov 2020 21:32:46 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1605821575; bh=vV9btdBNr+r/Yu6y6o0Vn/OnbnYaki7TR3vd4fgrem4=; h=Date:To:From:Cc:Reply-To:Subject:From; b=j1Oh3LXxCkA1rxFaO4vZ+wCxSujB3t+Ao9YLvpGKU2OrWXUu7cKrn9MOid8j0pFq3 lgeQFGBtXgSmzVwuQQpdgpgurlOiSR7rTKnbGqem/Z1tDuYnscZYtRdzcRp/FxKiuj tKAru7JujK3QCK+zLgBY0PVt1KS9rg2+hvNDbfkw= To: Sebastian Reichel From: Timon Baetz Cc: Geordan Neukum , Timon Baetz , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org Reply-To: Timon Baetz Subject: [PATCH] power: supply: max17042_battery: Reorder power supply properties Message-ID: <20201119213117.1385219-1-timon.baetz@protonmail.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org Commit 21b01cc879cc ("power: supply: max17042_battery: Add support for the TTE_NOW prop") added a new property (TIME_TO_EMPTY_NOW) at end of max17042_battery_props. Reorder max17042_battery_props to properly ignore CURRENT_NOW and CURRENT_AVG when current sense is disabled. Signed-off-by: Timon Baetz --- drivers/power/supply/max17042_battery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/power/supply/max17042_battery.c b/drivers/power/supply/max17042_battery.c index f284547913d6..672c75639a37 100644 --- a/drivers/power/supply/max17042_battery.c +++ b/drivers/power/supply/max17042_battery.c @@ -85,9 +85,9 @@ static enum power_supply_property max17042_battery_props[] = { POWER_SUPPLY_PROP_TEMP_MAX, POWER_SUPPLY_PROP_HEALTH, POWER_SUPPLY_PROP_SCOPE, + POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW, POWER_SUPPLY_PROP_CURRENT_NOW, POWER_SUPPLY_PROP_CURRENT_AVG, - POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW, }; static int max17042_get_temperature(struct max17042_chip *chip, int *temp)