| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0 |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * BQ27xxx battery monitor I2C driver |
|---|
| 3 | 4 | * |
|---|
| 4 | | - * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/ |
|---|
| 5 | + * Copyright (C) 2015 Texas Instruments Incorporated - https://www.ti.com/ |
|---|
| 5 | 6 | * Andrew F. Davis <afd@ti.com> |
|---|
| 6 | | - * |
|---|
| 7 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 8 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 9 | | - * published by the Free Software Foundation. |
|---|
| 10 | | - * |
|---|
| 11 | | - * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
|---|
| 12 | | - * kind, whether express or implied; without even the implied warranty |
|---|
| 13 | | - * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 14 | | - * GNU General Public License for more details. |
|---|
| 15 | 7 | */ |
|---|
| 16 | 8 | |
|---|
| 17 | 9 | #include <linux/i2c.h> |
|---|
| .. | .. |
|---|
| 248 | 240 | { "bq27546", BQ27546 }, |
|---|
| 249 | 241 | { "bq27742", BQ27742 }, |
|---|
| 250 | 242 | { "bq27545", BQ27545 }, |
|---|
| 243 | + { "bq27411", BQ27411 }, |
|---|
| 251 | 244 | { "bq27421", BQ27421 }, |
|---|
| 252 | 245 | { "bq27425", BQ27425 }, |
|---|
| 253 | 246 | { "bq27426", BQ27426 }, |
|---|
| 254 | 247 | { "bq27441", BQ27441 }, |
|---|
| 255 | 248 | { "bq27621", BQ27621 }, |
|---|
| 249 | + { "bq27z561", BQ27Z561 }, |
|---|
| 250 | + { "bq28z610", BQ28Z610 }, |
|---|
| 251 | + { "bq34z100", BQ34Z100 }, |
|---|
| 256 | 252 | {}, |
|---|
| 257 | 253 | }; |
|---|
| 258 | 254 | MODULE_DEVICE_TABLE(i2c, bq27xxx_i2c_id_table); |
|---|
| .. | .. |
|---|
| 280 | 276 | { .compatible = "ti,bq27546" }, |
|---|
| 281 | 277 | { .compatible = "ti,bq27742" }, |
|---|
| 282 | 278 | { .compatible = "ti,bq27545" }, |
|---|
| 279 | + { .compatible = "ti,bq27411" }, |
|---|
| 283 | 280 | { .compatible = "ti,bq27421" }, |
|---|
| 284 | 281 | { .compatible = "ti,bq27425" }, |
|---|
| 285 | 282 | { .compatible = "ti,bq27426" }, |
|---|
| 286 | 283 | { .compatible = "ti,bq27441" }, |
|---|
| 287 | 284 | { .compatible = "ti,bq27621" }, |
|---|
| 285 | + { .compatible = "ti,bq27z561" }, |
|---|
| 286 | + { .compatible = "ti,bq28z610" }, |
|---|
| 287 | + { .compatible = "ti,bq34z100" }, |
|---|
| 288 | 288 | {}, |
|---|
| 289 | 289 | }; |
|---|
| 290 | 290 | MODULE_DEVICE_TABLE(of, bq27xxx_battery_i2c_of_match_table); |
|---|