Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753969AbbGWQCx (ORCPT ); Thu, 23 Jul 2015 12:02:53 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:45338 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753881AbbGWQCl (ORCPT ); Thu, 23 Jul 2015 12:02:41 -0400 Message-ID: <55B11007.10504@ti.com> Date: Thu, 23 Jul 2015 11:02:15 -0500 From: Dan Murphy User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: "Andrew F. Davis" , =?windows-1252?Q?Pali_Roh=E1r?= , Sebastian Reichel , Dmitry Eremin-Solenikov , David Woodhouse CC: , Subject: Re: [PATCH 2/8] power: bq27x00_battery: Fix lines over 80 characters long References: <1437601920-13045-1-git-send-email-afd@ti.com> <1437601920-13045-3-git-send-email-afd@ti.com> In-Reply-To: <1437601920-13045-3-git-send-email-afd@ti.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4460 Lines: 112 On 07/22/2015 04:51 PM, Andrew F. Davis wrote: > Shorted lines over 80 characters long by reducing tab count. > > Signed-off-by: Andrew F. Davis > --- > drivers/power/bq27x00_battery.c | 74 ++++++++++++++++++++--------------------- > 1 file changed, 37 insertions(+), 37 deletions(-) > > diff --git a/drivers/power/bq27x00_battery.c b/drivers/power/bq27x00_battery.c > index 2257bd4..203cf61 100644 > --- a/drivers/power/bq27x00_battery.c > +++ b/drivers/power/bq27x00_battery.c > @@ -39,49 +39,49 @@ > > #include > > -#define DRIVER_VERSION "1.2.0" > +#define DRIVER_VERSION "1.2.0" > > #define BQ27XXX_MANUFACTURER "Texas Instruments" > > -#define BQ27x00_REG_TEMP 0x06 > -#define BQ27x00_REG_VOLT 0x08 > -#define BQ27x00_REG_AI 0x14 > -#define BQ27x00_REG_FLAGS 0x0A > -#define BQ27x00_REG_TTE 0x16 > -#define BQ27x00_REG_TTF 0x18 > -#define BQ27x00_REG_TTECP 0x26 > -#define BQ27x00_REG_NAC 0x0C /* Nominal available capacity */ > -#define BQ27x00_REG_LMD 0x12 /* Last measured discharge */ > -#define BQ27x00_REG_CYCT 0x2A /* Cycle count total */ > -#define BQ27x00_REG_AE 0x22 /* Available energy */ > -#define BQ27x00_POWER_AVG 0x24 > - > -#define BQ27000_REG_RSOC 0x0B /* Relative State-of-Charge */ > -#define BQ27000_REG_ILMD 0x76 /* Initial last measured discharge */ > -#define BQ27000_FLAG_EDVF BIT(0) /* Final End-of-Discharge-Voltage flag */ > -#define BQ27000_FLAG_EDV1 BIT(1) /* First End-of-Discharge-Voltage flag */ > -#define BQ27000_FLAG_CI BIT(4) /* Capacity Inaccurate flag */ > -#define BQ27000_FLAG_FC BIT(5) > -#define BQ27000_FLAG_CHGS BIT(7) /* Charge state flag */ > - > -#define BQ27500_REG_SOC 0x2C > -#define BQ27500_REG_DCAP 0x3C /* Design capacity */ > -#define BQ27500_FLAG_DSC BIT(0) > -#define BQ27500_FLAG_SOCF BIT(1) /* State-of-Charge threshold final */ > -#define BQ27500_FLAG_SOC1 BIT(2) /* State-of-Charge threshold 1 */ > -#define BQ27500_FLAG_FC BIT(9) > -#define BQ27500_FLAG_OTC BIT(15) > - > -#define BQ27742_POWER_AVG 0x76 > - > -#define BQ27510_REG_SOC 0x20 > -#define BQ27510_REG_DCAP 0x2E /* Design capacity */ > -#define BQ27510_REG_CYCT 0x1E /* Cycle count total */ > +#define BQ27x00_REG_TEMP 0x06 > +#define BQ27x00_REG_VOLT 0x08 > +#define BQ27x00_REG_AI 0x14 > +#define BQ27x00_REG_FLAGS 0x0A > +#define BQ27x00_REG_TTE 0x16 > +#define BQ27x00_REG_TTF 0x18 > +#define BQ27x00_REG_TTECP 0x26 > +#define BQ27x00_REG_NAC 0x0C /* Nominal available capacity */ > +#define BQ27x00_REG_LMD 0x12 /* Last measured discharge */ > +#define BQ27x00_REG_CYCT 0x2A /* Cycle count total */ > +#define BQ27x00_REG_AE 0x22 /* Available energy */ > +#define BQ27x00_POWER_AVG 0x24 > + > +#define BQ27000_REG_RSOC 0x0B /* Relative State-of-Charge */ > +#define BQ27000_REG_ILMD 0x76 /* Initial last measured discharge */ > +#define BQ27000_FLAG_EDVF BIT(0) /* Final End-of-Discharge-Voltage flag */ > +#define BQ27000_FLAG_EDV1 BIT(1) /* First End-of-Discharge-Voltage flag */ > +#define BQ27000_FLAG_CI BIT(4) /* Capacity Inaccurate flag */ > +#define BQ27000_FLAG_FC BIT(5) > +#define BQ27000_FLAG_CHGS BIT(7) /* Charge state flag */ > + > +#define BQ27500_REG_SOC 0x2C > +#define BQ27500_REG_DCAP 0x3C /* Design capacity */ > +#define BQ27500_FLAG_DSC BIT(0) > +#define BQ27500_FLAG_SOCF BIT(1) /* State-of-Charge threshold final */ > +#define BQ27500_FLAG_SOC1 BIT(2) /* State-of-Charge threshold 1 */ > +#define BQ27500_FLAG_FC BIT(9) > +#define BQ27500_FLAG_OTC BIT(15) > + > +#define BQ27742_POWER_AVG 0x76 > + > +#define BQ27510_REG_SOC 0x20 > +#define BQ27510_REG_DCAP 0x2E /* Design capacity */ > +#define BQ27510_REG_CYCT 0x1E /* Cycle count total */ > > /* bq27425 register addresses are same as bq27x00 addresses minus 4 */ > -#define BQ27425_REG_OFFSET 0x04 > +#define BQ27425_REG_OFFSET 0x04 > #define BQ27425_REG_SOC (0x1C + BQ27425_REG_OFFSET) > -#define BQ27425_REG_DCAP (0x3C + BQ27425_REG_OFFSET) > +#define BQ27425_REG_DCAP (0x3C + BQ27425_REG_OFFSET) > > #define BQ27000_RS 20 /* Resistor sense */ > #define BQ27x00_POWER_CONSTANT (256 * 29200 / 1000) Acked-by: Dan Murphy -- ------------------ Dan Murphy -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/