diff options
author | Jonghwa Lee <jonghwa3.lee@samsung.com> | 2013-02-07 15:05:27 +0900 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-11-18 11:42:30 +0900 |
commit | e2217209c39c7b7965e31999007d4abd36eb6d5c (patch) | |
tree | 150e6ac6addea0e4c59110baf7cb820ef4f88649 /include | |
parent | 350d1f5a66df8d571f439bb004adca722266f793 (diff) | |
download | linux-3.10-e2217209c39c7b7965e31999007d4abd36eb6d5c.tar.gz linux-3.10-e2217209c39c7b7965e31999007d4abd36eb6d5c.tar.bz2 linux-3.10-e2217209c39c7b7965e31999007d4abd36eb6d5c.zip |
regulator: Remove const from declation of reg_desc in regulator_dev.
Signed-off-by: Jonghwa Lee <jonghwa3.lee@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/regulator/driver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index 6700cc94bdd..18e961cc7ee 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h @@ -279,7 +279,7 @@ struct regulator_config { * no other direct access). */ struct regulator_dev { - const struct regulator_desc *desc; + struct regulator_desc *desc; int exclusive; u32 use_count; u32 open_count; |