mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 00:38:55 +00:00
clk: qcom: Make reset_control_ops const
The qcom_reset_ops structure is never modified. Make it const. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
parent
7ba256d2aa
commit
add479eeb1
@ -55,7 +55,7 @@ qcom_reset_deassert(struct reset_controller_dev *rcdev, unsigned long id)
|
|||||||
return regmap_update_bits(rst->regmap, map->reg, mask, 0);
|
return regmap_update_bits(rst->regmap, map->reg, mask, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct reset_control_ops qcom_reset_ops = {
|
const struct reset_control_ops qcom_reset_ops = {
|
||||||
.reset = qcom_reset,
|
.reset = qcom_reset,
|
||||||
.assert = qcom_reset_assert,
|
.assert = qcom_reset_assert,
|
||||||
.deassert = qcom_reset_deassert,
|
.deassert = qcom_reset_deassert,
|
||||||
|
@ -32,6 +32,6 @@ struct qcom_reset_controller {
|
|||||||
#define to_qcom_reset_controller(r) \
|
#define to_qcom_reset_controller(r) \
|
||||||
container_of(r, struct qcom_reset_controller, rcdev);
|
container_of(r, struct qcom_reset_controller, rcdev);
|
||||||
|
|
||||||
extern struct reset_control_ops qcom_reset_ops;
|
extern const struct reset_control_ops qcom_reset_ops;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user