Skip to content

Commit 46aa27e

Browse files
jekhorsre
authored andcommitted
power: supply: bq25890_charger: Add DT and I2C ids for all supported chips
Add bq25892, bq25895 and bq25896 to list of supported device IDs for DeviceTree and I2C. Signed-off-by: Yauhen Kharuzhy <[email protected]> Signed-off-by: Sebastian Reichel <[email protected]>
1 parent 13f0a58 commit 46aa27e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/power/supply/bq25890_charger.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,12 +1041,18 @@ static const struct dev_pm_ops bq25890_pm = {
10411041

10421042
static const struct i2c_device_id bq25890_i2c_ids[] = {
10431043
{ "bq25890", 0 },
1044+
{ "bq25892", 0 },
1045+
{ "bq25895", 0 },
1046+
{ "bq25896", 0 },
10441047
{},
10451048
};
10461049
MODULE_DEVICE_TABLE(i2c, bq25890_i2c_ids);
10471050

10481051
static const struct of_device_id bq25890_of_match[] = {
10491052
{ .compatible = "ti,bq25890", },
1053+
{ .compatible = "ti,bq25892", },
1054+
{ .compatible = "ti,bq25895", },
1055+
{ .compatible = "ti,bq25896", },
10501056
{ },
10511057
};
10521058
MODULE_DEVICE_TABLE(of, bq25890_of_match);

0 commit comments

Comments
 (0)