Sp7731e 1h10 Native Android Free -
static const struct regulator_desc sp7731e_reg_desc = .name = "SP7731E_BUCK1", .id = 0, .ops = ®ulator_ops, /* implement get/set ops mapping to regmap */ .type = REGULATOR_VOLTAGE, .owner = THIS_MODULE, .n_voltages = 128, .vsel_reg = 0x10, /* example */ .vsel_mask = 0x7F, ;
struct regmap *regmap; int ret;
#define SP7731E_REG_MAX 0xFF
/* Save driver data if needed */ i2c_set_clientdata(client, regmap); return 0;
regmap = devm_regmap_init_i2c(client, &sp7731e_regmap_config); if (IS_ERR(regmap)) return PTR_ERR(regmap); sp7731e 1h10 native android free
static const struct regmap_config sp7731e_regmap_config = .reg_bits = 8, .val_bits = 8, .max_register = SP7731E_REG_MAX, ;
static const struct of_device_id sp7731e_of_match[] = .compatible = "vendor,sp7731e", , ; MODULE_DEVICE_TABLE(of, sp7731e_of_match); static const struct regulator_desc sp7731e_reg_desc =
/* Register MFD cells (regulators, irq, etc.) */ ret = devm_mfd_add_devices(&client->dev, -1, sp7731e_cells, ARRAY_SIZE(sp7731e_cells), NULL, 0, NULL); if (ret) return ret;
