]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
mfd: da9052: Avoid setting read_flag_mask for da9052-i2c driver
authorAxel Lin <axel.lin@ingics.com>
Sat, 16 Aug 2014 13:23:40 +0000 (21:23 +0800)
committerLee Jones <lee.jones@linaro.org>
Fri, 26 Sep 2014 07:15:54 +0000 (08:15 +0100)
commite9e9d3973594cadd9e892bc79f914f299bb61124
tree30b3bb2865a5f4e267b7353efdd41c4888249872
parentc38715fed8f51a8fba4a15f86732ad885f073d78
mfd: da9052: Avoid setting read_flag_mask for da9052-i2c driver

Current code init regmap with &da9052_regmap_config for both da9052-spi and
da9052-i2c drivers. da9052-spi sets the read_flag_mask.
The same setting may be applied for da9052-i2c if da9052-spi driver is loaded
first because they actually use the same regmap_config setting.
Fix this issue by using a local variable for regmap_config in da9052-spi driver,
so the settings in spi driver won't impact the settings in i2c driver.
Also makes da9052_regmap_config const to avoid similar issue.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/da9052-core.c
drivers/mfd/da9052-spi.c
include/linux/mfd/da9052/da9052.h