From: Kuninori Morimoto Date: Wed, 25 May 2016 01:15:04 +0000 (+0000) Subject: of: add missing const for of_parse_phandle_with_args() in !CONFIG_OF X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e93aeeae0bf8cba43e05484ae4ad17213ac6c3a7;p=linux-beck.git of: add missing const for of_parse_phandle_with_args() in !CONFIG_OF commit 93c667ca2598bd84f1bd3f2fa176af69707699fe ("of: *node argument to of_parse_phandle_with_args should be const") changed to const for struct device node *np, but it cares CONFIG_OF case only, !CONFIG_OF case need it too. Signed-off-by: Kuninori Morimoto Signed-off-by: Rob Herring --- diff --git a/include/linux/of.h b/include/linux/of.h index c7292e8ea080..74eb28cadbef 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -614,7 +614,7 @@ static inline struct device_node *of_parse_phandle(const struct device_node *np, return NULL; } -static inline int of_parse_phandle_with_args(struct device_node *np, +static inline int of_parse_phandle_with_args(const struct device_node *np, const char *list_name, const char *cells_name, int index,