mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 12:14:10 +08:00
regulator: rtq2208: Fix uninitialized use of regulator_config
[ Upstream commit2feb023110
] Fix rtq2208 driver uninitialized use to cause kernel error. Fixes:85a11f5562
("regulator: rtq2208: Add Richtek RTQ2208 SubPMIC") Signed-off-by: ChiYuan Huang <cy_huang@richtek.com> Link: https://patch.msgid.link/00d691cfcc0eae9ce80a37b62e99851e8fdcffe2.1729829243.git.cy_huang@richtek.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
3e79ad156b
commit
9b7c0405af
@ -513,7 +513,7 @@ static int rtq2208_probe(struct i2c_client *i2c)
|
||||
struct regmap *regmap;
|
||||
struct rtq2208_regulator_desc *rdesc[RTQ2208_LDO_MAX];
|
||||
struct regulator_dev *rdev;
|
||||
struct regulator_config cfg;
|
||||
struct regulator_config cfg = {};
|
||||
struct rtq2208_rdev_map *rdev_map;
|
||||
int i, ret = 0, idx, n_regulator = 0;
|
||||
unsigned int regulator_idx_table[RTQ2208_LDO_MAX],
|
||||
|
Loading…
Reference in New Issue
Block a user