rt5033.c (4a322296680e560a8ff7eb05c1e58a8cf8497344) | rt5033.c (b487c17d5ff381943b7c9b6af992eec83ee5c5ee) |
---|---|
1/* 2 * MFD core driver for the Richtek RT5033. 3 * 4 * RT5033 comprises multiple sub-devices switcing charger, fuel gauge, 5 * flash LED, current source, LDO and BUCK regulators. 6 * 7 * Copyright (C) 2014 Samsung Electronics, Co., Ltd. 8 * Author: Beomho Seo <beomho.seo@samsung.com> --- 33 unchanged lines hidden (view full) --- 42static const struct mfd_cell rt5033_devs[] = { 43 { .name = "rt5033-regulator", }, 44 { 45 .name = "rt5033-charger", 46 .of_compatible = "richtek,rt5033-charger", 47 }, { 48 .name = "rt5033-battery", 49 .of_compatible = "richtek,rt5033-battery", | 1/* 2 * MFD core driver for the Richtek RT5033. 3 * 4 * RT5033 comprises multiple sub-devices switcing charger, fuel gauge, 5 * flash LED, current source, LDO and BUCK regulators. 6 * 7 * Copyright (C) 2014 Samsung Electronics, Co., Ltd. 8 * Author: Beomho Seo <beomho.seo@samsung.com> --- 33 unchanged lines hidden (view full) --- 42static const struct mfd_cell rt5033_devs[] = { 43 { .name = "rt5033-regulator", }, 44 { 45 .name = "rt5033-charger", 46 .of_compatible = "richtek,rt5033-charger", 47 }, { 48 .name = "rt5033-battery", 49 .of_compatible = "richtek,rt5033-battery", |
50 }, { 51 .name = "rt5033-led", 52 .of_compatible = "richtek,rt5033-led", |
|
50 }, 51}; 52 53static const struct regmap_config rt5033_regmap_config = { 54 .reg_bits = 8, 55 .val_bits = 8, 56 .max_register = RT5033_REG_END, 57}; --- 85 unchanged lines hidden --- | 53 }, 54}; 55 56static const struct regmap_config rt5033_regmap_config = { 57 .reg_bits = 8, 58 .val_bits = 8, 59 .max_register = RT5033_REG_END, 60}; --- 85 unchanged lines hidden --- |