Linux Power Management development
 help / color / mirror / Atom feed
From: Sebastian Reichel <sre@kernel.org>
To: Liam Breck <liam@networkimprov.net>
Cc: "Pali Rohár" <pali.rohar@gmail.com>,
	linux-pm@vger.kernel.org, "Paul Kocialkowski" <contact@paulk.fr>,
	"Liam Breck" <kernel@networkimprov.net>
Subject: Re: [RFC v2 5/5] power: supply: bq27xxx: Remove duplicate chip data arrays
Date: Sat, 12 Aug 2017 12:22:21 -0400	[thread overview]
Message-ID: <20170812162221.fmpmh65ksjpdzrsc@earth> (raw)
In-Reply-To: <20170807062216.19988-6-liam@networkimprov.net>

[-- Attachment #1: Type: text/plain, Size: 6090 bytes --]

Hi,

On Sun, Aug 06, 2017 at 11:22:16PM -0700, Liam Breck wrote:
> From: Liam Breck <kernel@networkimprov.net>
> 
> BQ2751X & BQ27510G3 have identical regs & props.
> BQ27500 & BQ27510G1 & BQ27510G2 have identical regs & props.
> Remove the duplicate arrays.
> 
> No functional changes to the driver.

Looks fine to me.

-- Sebastian

> Signed-off-by: Liam Breck <kernel@networkimprov.net>
> ---
>  drivers/power/supply/bq27xxx_battery.c | 129 ++-------------------------------
>  1 file changed, 8 insertions(+), 121 deletions(-)
> 
> diff --git a/drivers/power/supply/bq27xxx_battery.c b/drivers/power/supply/bq27xxx_battery.c
> index d85f9ec2..b451d49a 100644
> --- a/drivers/power/supply/bq27xxx_battery.c
> +++ b/drivers/power/supply/bq27xxx_battery.c
> @@ -201,27 +201,8 @@ static u8
>  		[BQ27XXX_REG_AP] = INVALID_REG_ADDR,
>  		BQ27XXX_DM_REG_ROWS,
>  	},
> -	bq2751x_regs[BQ27XXX_REG_MAX] = {
> -		[BQ27XXX_REG_CTRL] = 0x00,
> -		[BQ27XXX_REG_TEMP] = 0x06,
> -		[BQ27XXX_REG_INT_TEMP] = 0x28,
> -		[BQ27XXX_REG_VOLT] = 0x08,
> -		[BQ27XXX_REG_AI] = 0x14,
> -		[BQ27XXX_REG_FLAGS] = 0x0a,
> -		[BQ27XXX_REG_TTE] = 0x16,
> -		[BQ27XXX_REG_TTF] = INVALID_REG_ADDR,
> -		[BQ27XXX_REG_TTES] = 0x1a,
> -		[BQ27XXX_REG_TTECP] = INVALID_REG_ADDR,
> -		[BQ27XXX_REG_NAC] = 0x0c,
> -		[BQ27XXX_REG_FCC] = 0x12,
> -		[BQ27XXX_REG_CYCT] = 0x1e,
> -		[BQ27XXX_REG_AE] = INVALID_REG_ADDR,
> -		[BQ27XXX_REG_SOC] = 0x20,
> -		[BQ27XXX_REG_DCAP] = 0x2e,
> -		[BQ27XXX_REG_AP] = INVALID_REG_ADDR,
> -		BQ27XXX_DM_REG_ROWS,
> -	},
> -#define bq2752x_regs bq2751x_regs
> +#define bq2751x_regs bq27510g3_regs
> +#define bq2752x_regs bq27510g3_regs
>  	bq27500_regs[BQ27XXX_REG_MAX] = {
>  		[BQ27XXX_REG_CTRL] = 0x00,
>  		[BQ27XXX_REG_TEMP] = 0x06,
> @@ -242,46 +223,8 @@ static u8
>  		[BQ27XXX_REG_AP] = 0x24,
>  		BQ27XXX_DM_REG_ROWS,
>  	},
> -	bq27510g1_regs[BQ27XXX_REG_MAX] = {
> -		[BQ27XXX_REG_CTRL] = 0x00,
> -		[BQ27XXX_REG_TEMP] = 0x06,
> -		[BQ27XXX_REG_INT_TEMP] = INVALID_REG_ADDR,
> -		[BQ27XXX_REG_VOLT] = 0x08,
> -		[BQ27XXX_REG_AI] = 0x14,
> -		[BQ27XXX_REG_FLAGS] = 0x0a,
> -		[BQ27XXX_REG_TTE] = 0x16,
> -		[BQ27XXX_REG_TTF] = 0x18,
> -		[BQ27XXX_REG_TTES] = 0x1c,
> -		[BQ27XXX_REG_TTECP] = 0x26,
> -		[BQ27XXX_REG_NAC] = 0x0c,
> -		[BQ27XXX_REG_FCC] = 0x12,
> -		[BQ27XXX_REG_CYCT] = 0x2a,
> -		[BQ27XXX_REG_AE] = 0x22,
> -		[BQ27XXX_REG_SOC] = 0x2c,
> -		[BQ27XXX_REG_DCAP] = 0x3c,
> -		[BQ27XXX_REG_AP] = 0x24,
> -		BQ27XXX_DM_REG_ROWS,
> -	},
> -	bq27510g2_regs[BQ27XXX_REG_MAX] = {
> -		[BQ27XXX_REG_CTRL] = 0x00,
> -		[BQ27XXX_REG_TEMP] = 0x06,
> -		[BQ27XXX_REG_INT_TEMP] = INVALID_REG_ADDR,
> -		[BQ27XXX_REG_VOLT] = 0x08,
> -		[BQ27XXX_REG_AI] = 0x14,
> -		[BQ27XXX_REG_FLAGS] = 0x0a,
> -		[BQ27XXX_REG_TTE] = 0x16,
> -		[BQ27XXX_REG_TTF] = 0x18,
> -		[BQ27XXX_REG_TTES] = 0x1c,
> -		[BQ27XXX_REG_TTECP] = 0x26,
> -		[BQ27XXX_REG_NAC] = 0x0c,
> -		[BQ27XXX_REG_FCC] = 0x12,
> -		[BQ27XXX_REG_CYCT] = 0x2a,
> -		[BQ27XXX_REG_AE] = 0x22,
> -		[BQ27XXX_REG_SOC] = 0x2c,
> -		[BQ27XXX_REG_DCAP] = 0x3c,
> -		[BQ27XXX_REG_AP] = 0x24,
> -		BQ27XXX_DM_REG_ROWS,
> -	},
> +#define bq27510g1_regs bq27500_regs
> +#define bq27510g2_regs bq27500_regs
>  	bq27510g3_regs[BQ27XXX_REG_MAX] = {
>  		[BQ27XXX_REG_CTRL] = 0x00,
>  		[BQ27XXX_REG_TEMP] = 0x06,
> @@ -530,24 +473,8 @@ static enum power_supply_property bq2750x_props[] = {
>  	POWER_SUPPLY_PROP_MANUFACTURER,
>  };
>  
> -static enum power_supply_property bq2751x_props[] = {
> -	POWER_SUPPLY_PROP_STATUS,
> -	POWER_SUPPLY_PROP_PRESENT,
> -	POWER_SUPPLY_PROP_VOLTAGE_NOW,
> -	POWER_SUPPLY_PROP_CURRENT_NOW,
> -	POWER_SUPPLY_PROP_CAPACITY,
> -	POWER_SUPPLY_PROP_CAPACITY_LEVEL,
> -	POWER_SUPPLY_PROP_TEMP,
> -	POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
> -	POWER_SUPPLY_PROP_TECHNOLOGY,
> -	POWER_SUPPLY_PROP_CHARGE_FULL,
> -	POWER_SUPPLY_PROP_CHARGE_NOW,
> -	POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
> -	POWER_SUPPLY_PROP_CYCLE_COUNT,
> -	POWER_SUPPLY_PROP_HEALTH,
> -	POWER_SUPPLY_PROP_MANUFACTURER,
> -};
> -#define bq2752x_props bq2751x_props
> +#define bq2751x_props bq27510g3_props
> +#define bq2752x_props bq27510g3_props
>  
>  static enum power_supply_property bq27500_props[] = {
>  	POWER_SUPPLY_PROP_STATUS,
> @@ -569,48 +496,8 @@ static enum power_supply_property bq27500_props[] = {
>  	POWER_SUPPLY_PROP_HEALTH,
>  	POWER_SUPPLY_PROP_MANUFACTURER,
>  };
> -
> -static enum power_supply_property bq27510g1_props[] = {
> -	POWER_SUPPLY_PROP_STATUS,
> -	POWER_SUPPLY_PROP_PRESENT,
> -	POWER_SUPPLY_PROP_VOLTAGE_NOW,
> -	POWER_SUPPLY_PROP_CURRENT_NOW,
> -	POWER_SUPPLY_PROP_CAPACITY,
> -	POWER_SUPPLY_PROP_CAPACITY_LEVEL,
> -	POWER_SUPPLY_PROP_TEMP,
> -	POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
> -	POWER_SUPPLY_PROP_TIME_TO_FULL_NOW,
> -	POWER_SUPPLY_PROP_TECHNOLOGY,
> -	POWER_SUPPLY_PROP_CHARGE_FULL,
> -	POWER_SUPPLY_PROP_CHARGE_NOW,
> -	POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
> -	POWER_SUPPLY_PROP_CYCLE_COUNT,
> -	POWER_SUPPLY_PROP_ENERGY_NOW,
> -	POWER_SUPPLY_PROP_POWER_AVG,
> -	POWER_SUPPLY_PROP_HEALTH,
> -	POWER_SUPPLY_PROP_MANUFACTURER,
> -};
> -
> -static enum power_supply_property bq27510g2_props[] = {
> -	POWER_SUPPLY_PROP_STATUS,
> -	POWER_SUPPLY_PROP_PRESENT,
> -	POWER_SUPPLY_PROP_VOLTAGE_NOW,
> -	POWER_SUPPLY_PROP_CURRENT_NOW,
> -	POWER_SUPPLY_PROP_CAPACITY,
> -	POWER_SUPPLY_PROP_CAPACITY_LEVEL,
> -	POWER_SUPPLY_PROP_TEMP,
> -	POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
> -	POWER_SUPPLY_PROP_TIME_TO_FULL_NOW,
> -	POWER_SUPPLY_PROP_TECHNOLOGY,
> -	POWER_SUPPLY_PROP_CHARGE_FULL,
> -	POWER_SUPPLY_PROP_CHARGE_NOW,
> -	POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
> -	POWER_SUPPLY_PROP_CYCLE_COUNT,
> -	POWER_SUPPLY_PROP_ENERGY_NOW,
> -	POWER_SUPPLY_PROP_POWER_AVG,
> -	POWER_SUPPLY_PROP_HEALTH,
> -	POWER_SUPPLY_PROP_MANUFACTURER,
> -};
> +#define bq27510g1_props bq27500_props
> +#define bq27510g2_props bq27500_props
>  
>  static enum power_supply_property bq27510g3_props[] = {
>  	POWER_SUPPLY_PROP_STATUS,
> -- 
> 2.13.2
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      reply	other threads:[~2017-08-12 16:22 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-07  6:22 [RFC v2 0/5] bq27xxx_battery data memory update Liam Breck
2017-08-07  6:22 ` [RFC v2 1/5] power: supply: bq27xxx: Create single chip data table Liam Breck
2017-08-09 16:08   ` Sebastian Reichel
2017-08-12  0:52     ` Liam Breck
2017-08-12 16:39       ` Sebastian Reichel
2017-08-07  6:22 ` [RFC v2 2/5] power: supply: bq27xxx: Add chip IDs for previously shadowed chips Liam Breck
2017-08-12 15:02   ` Sebastian Reichel
2017-08-12 17:56     ` Liam Breck
2017-08-12 18:45       ` Sebastian Reichel
2017-08-07  6:22 ` [RFC v2 3/5] power: supply: bq27xxx: Enable data memory update for certain chips Liam Breck
2017-08-12 16:04   ` Sebastian Reichel
2017-08-12 18:00     ` Liam Breck
2017-08-12 18:57       ` Sebastian Reichel
2017-08-07  6:22 ` [RFC v2 4/5] power: supply: bq27xxx: Flag identical chip data when in debug mode Liam Breck
2017-08-12 16:25   ` Sebastian Reichel
2017-08-12 18:35     ` Liam Breck
2017-08-12 18:40     ` Liam Breck
2017-08-07  6:22 ` [RFC v2 5/5] power: supply: bq27xxx: Remove duplicate chip data arrays Liam Breck
2017-08-12 16:22   ` Sebastian Reichel [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170812162221.fmpmh65ksjpdzrsc@earth \
    --to=sre@kernel.org \
    --cc=contact@paulk.fr \
    --cc=kernel@networkimprov.net \
    --cc=liam@networkimprov.net \
    --cc=linux-pm@vger.kernel.org \
    --cc=pali.rohar@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox