Skip to content

Commit 0a3f5af

Browse files
committed
Merge tag 'pwm/for-4.6-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm
Pull pwm fix from Thierry Reding: "A single one-line fix to turn the regmap cache from an RB-tree to a flat cache to avoid lockdep and abort issues" * tag 'pwm/for-4.6-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm: pwm: fsl-ftm: Use flat regmap cache
2 parents c8c5285 + ad06fde commit 0a3f5af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pwm/pwm-fsl-ftm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ static const struct regmap_config fsl_pwm_regmap_config = {
392392

393393
.max_register = FTM_PWMLOAD,
394394
.volatile_reg = fsl_pwm_volatile_reg,
395-
.cache_type = REGCACHE_RBTREE,
395+
.cache_type = REGCACHE_FLAT,
396396
};
397397

398398
static int fsl_pwm_probe(struct platform_device *pdev)

0 commit comments

Comments
 (0)