]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
power: supply: bq27xxx: rename BQ27500 allow for deprecation in future.
authorChris Lapa <chris@lapa.com.au>
Wed, 11 Jan 2017 01:44:38 +0000 (12:44 +1100)
committerSebastian Reichel <sre@kernel.org>
Thu, 12 Jan 2017 01:30:13 +0000 (02:30 +0100)
The BQ2750X definition exists only to satisfy backwards compatibility.

Signed-off-by: Chris Lapa <chris@lapa.com.au>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/supply/bq27xxx_battery.c
drivers/power/supply/bq27xxx_battery_i2c.c
include/linux/power/bq27xxx_battery.h

index 7272d1e024f90af5e7408ba6c5109e2eadb1e2fd..103ba3b1db575845ed067cf28af7e1c2c6129991 100644 (file)
@@ -145,7 +145,7 @@ static u8 bq27xxx_regs[][BQ27XXX_REG_MAX] = {
                [BQ27XXX_REG_DCAP] = 0x76,
                [BQ27XXX_REG_AP] = INVALID_REG_ADDR,
        },
-       [BQ27500] = {
+       [BQ2750X] = {
                [BQ27XXX_REG_CTRL] = 0x00,
                [BQ27XXX_REG_TEMP] = 0x06,
                [BQ27XXX_REG_INT_TEMP] = 0x28,
@@ -303,7 +303,7 @@ static enum power_supply_property bq27010_battery_props[] = {
        POWER_SUPPLY_PROP_MANUFACTURER,
 };
 
-static enum power_supply_property bq27500_battery_props[] = {
+static enum power_supply_property bq2750x_battery_props[] = {
        POWER_SUPPLY_PROP_STATUS,
        POWER_SUPPLY_PROP_PRESENT,
        POWER_SUPPLY_PROP_VOLTAGE_NOW,
@@ -421,7 +421,7 @@ static struct {
 } bq27xxx_battery_props[] = {
        BQ27XXX_PROP(BQ27000, bq27000_battery_props),
        BQ27XXX_PROP(BQ27010, bq27010_battery_props),
-       BQ27XXX_PROP(BQ27500, bq27500_battery_props),
+       BQ27XXX_PROP(BQ2750X, bq2750x_battery_props),
        BQ27XXX_PROP(BQ27510, bq27510_battery_props),
        BQ27XXX_PROP(BQ27530, bq27530_battery_props),
        BQ27XXX_PROP(BQ27541, bq27541_battery_props),
@@ -675,7 +675,7 @@ static int bq27xxx_battery_read_pwr_avg(struct bq27xxx_device_info *di)
 static bool bq27xxx_battery_overtemp(struct bq27xxx_device_info *di, u16 flags)
 {
        switch (di->chip) {
-       case BQ27500:
+       case BQ2750X:
        case BQ27510:
        case BQ27541:
        case BQ27545:
index 5c5c3a6f99234dfd82cc41f4cd3ec5cd50865c7d..fb1219b779b795289e6bf47d52914eeb98b63b83 100644 (file)
@@ -148,7 +148,7 @@ static int bq27xxx_battery_i2c_remove(struct i2c_client *client)
 static const struct i2c_device_id bq27xxx_i2c_id_table[] = {
        { "bq27200", BQ27000 },
        { "bq27210", BQ27010 },
-       { "bq27500", BQ27500 },
+       { "bq27500", BQ2750X },
        { "bq27510", BQ27510 },
        { "bq27520", BQ27510 },
        { "bq27530", BQ27530 },
index bed9557b69e74150d1110514a45f50fea8a066d3..4c904d00564cc60974daab02f5c458701061d973 100644 (file)
@@ -4,7 +4,7 @@
 enum bq27xxx_chip {
        BQ27000 = 1, /* bq27000, bq27200 */
        BQ27010, /* bq27010, bq27210 */
-       BQ27500, /* bq27500 */
+       BQ2750X, /* bq27500 deprecated alias */
        BQ27510, /* bq27510, bq27520 */
        BQ27530, /* bq27530, bq27531 */
        BQ27541, /* bq27541, bq27542, bq27546, bq27742 */