projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2600abc
)
mfd: da9150: Constify struct regmap_config
author
Krzysztof Kozlowski
<k.kozlowski@samsung.com>
Tue, 24 Feb 2015 09:39:33 +0000
(10:39 +0100)
committer
Lee Jones
<lee.jones@linaro.org>
Tue, 3 Mar 2015 16:41:23 +0000
(16:41 +0000)
The regmap_config struct may be const because it is not modified by the
driver and regmap_init() accepts pointer to const.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/da9150-core.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mfd/da9150-core.c
b/drivers/mfd/da9150-core.c
index 4d757b97ef9a076fd4e433dff135c69b6adefe05..5549817df32e7954776a8e2334d44196bd785e6e 100644
(file)
--- a/
drivers/mfd/da9150-core.c
+++ b/
drivers/mfd/da9150-core.c
@@
-95,7
+95,7
@@
static const struct regmap_range_cfg da9150_range_cfg[] = {
},
};
-static struct regmap_config da9150_regmap_config = {
+static
const
struct regmap_config da9150_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.ranges = da9150_range_cfg,