1 // SPDX-License-Identifier: GPL-2.0
3 * Analog Devices LTC2947 high precision power and energy monitor over I2C
5 * Copyright 2019 Analog Devices Inc.
8 #include <linux/module.h>
9 #include <linux/regmap.h>
13 static const struct regmap_config ltc2947_regmap_config
= {
18 static int ltc2947_probe(struct i2c_client
*i2c
,
19 const struct i2c_device_id
*id
)
23 map
= devm_regmap_init_i2c(i2c
, <c2947_regmap_config
);
27 return ltc2947_core_probe(map
, i2c
->name
);
30 static const struct i2c_device_id ltc2947_id
[] = {
34 MODULE_DEVICE_TABLE(i2c
, ltc2947_id
);
36 static struct i2c_driver ltc2947_driver
= {
39 .of_match_table
= ltc2947_of_match
,
40 .pm
= <c2947_pm_ops
,
42 .probe
= ltc2947_probe
,
43 .id_table
= ltc2947_id
,
45 module_i2c_driver(ltc2947_driver
);
47 MODULE_AUTHOR("Nuno Sa <nuno.sa@analog.com>");
48 MODULE_DESCRIPTION("LTC2947 I2C power and energy monitor driver");
49 MODULE_LICENSE("GPL");