Re: [PATCH v2 02/26] reset: Make reset_control_ops const
From: Philipp Zabel <hidden>
Date: 2016-01-15 15:50:34
Also in:
dri-devel, linux-arm-kernel, linux-clk, lkml
From: Philipp Zabel <hidden>
Date: 2016-01-15 15:50:34
Also in:
dri-devel, linux-arm-kernel, linux-clk, lkml
Am Donnerstag, den 14.01.2016, 16:24 +0100 schrieb Maxime Ripard:
The ops pointer is holding a pointer to a structure that is usually not modified. Make it const. Signed-off-by: Maxime Ripard <maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> --- include/linux/reset-controller.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)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;
Applied, thanks. regards Philipp -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html