From: Maxime Ripard Date: Thu, 14 Jan 2016 15:24:45 +0000 (+0100) Subject: reset: Make reset_control_ops const X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=203d4f347d86aa9e78342457aa7a3844c4fadd1d;p=linux-beck.git reset: Make reset_control_ops const The ops pointer is holding a pointer to a structure that is usually not modified. Make it const. Signed-off-by: Maxime Ripard Signed-off-by: Philipp Zabel --- diff --git a/include/linux/reset-controller.h b/include/linux/reset-controller.h index ce6b962ffed4..a3a5bcdb1d02 100644 --- a/include/linux/reset-controller.h +++ b/include/linux/reset-controller.h @@ -38,7 +38,7 @@ struct of_phandle_args; * @nr_resets: number of reset controls in this reset controller device */ struct reset_controller_dev { - struct reset_control_ops *ops; + const struct reset_control_ops *ops; struct module *owner; struct list_head list; struct device_node *of_node;