mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
regulator: Fixes for v6.12
A couple of small fixes for drivers, nothing particularly remarkable. -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEreZoqmdXGLWf4p/qJNaLcl1Uh9AFAmctPG4ACgkQJNaLcl1U h9D/xQf+P5HgnrPOHBt2RxKwgBsm2PYBbPS7Vizp8n7WbEaORa7qsg7WXTT+DXhM EdSdIbuEMiTzMcPV6dRvxzAUnEWqYJnj2C/DCV21ktCGBOzzayVe1pTfhzvw2g/K gSaTzt+i2Cnwka92kWXKzV5ajFn+rcqsxDoSTOrkvb//9ogr0Oo3jQaiwzQprqL5 K9E67jlW3TzSKGWcHx8P6Fw69ZLazBb4gkgClJSPRdSFDCheFAZ9POM1xFsNmee0 Wa/9hyTeetBGjQCDTAOfRnSc7oDnb4s/j8ADAmOTQzw2BjjxKM2z2bIUvX+UH9O0 PeXaiZ+HqCIZck+IKF81AxE5pKPHZw== =uCZJ -----END PGP SIGNATURE----- Merge tag 'regulator-fix-v6.12-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator Pull regulator fixes from Mark Brown: "A couple of small fixes for drivers, nothing particularly remarkable" * tag 'regulator-fix-v6.12-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: regulator: rk808: Add apply_bit for BUCK3 on RK809 regulator: rtq2208: Fix uninitialized use of regulator_config
This commit is contained in:
commit
7b85bb4bc0
|
|
@ -1379,6 +1379,8 @@ static const struct regulator_desc rk809_reg[] = {
|
|||
.n_linear_ranges = ARRAY_SIZE(rk817_buck1_voltage_ranges),
|
||||
.vsel_reg = RK817_BUCK3_ON_VSEL_REG,
|
||||
.vsel_mask = RK817_BUCK_VSEL_MASK,
|
||||
.apply_reg = RK817_POWER_CONFIG,
|
||||
.apply_bit = RK817_BUCK3_FB_RES_INTER,
|
||||
.enable_reg = RK817_POWER_EN_REG(0),
|
||||
.enable_mask = ENABLE_MASK(RK817_ID_DCDC3),
|
||||
.enable_val = ENABLE_MASK(RK817_ID_DCDC3),
|
||||
|
|
|
|||
|
|
@ -568,7 +568,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