diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2014-10-22 11:44:52 +0200 |
---|---|---|
committer | Grant Likely <grant.likely@linaro.org> | 2014-11-04 16:43:11 +0000 |
commit | d94a75c13331cc00675b09d56f1a910bd53b7dd4 (patch) | |
tree | 06e974465bbb357abba79c51f7b8c76a48a7a0b5 /drivers | |
parent | 8cccffc52694938fc88f3d90bc7fed8460e27191 (diff) | |
download | linux-d94a75c13331cc00675b09d56f1a910bd53b7dd4.tar.bz2 |
of: Correct of_phandle_args node reference in comments
The device_node pointer in struct of_phandle_args is called "np", not
"node".
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/of/base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c index 1f61a908a767..ea3c363ef085 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -1525,7 +1525,7 @@ EXPORT_SYMBOL(of_parse_phandle); * Returns 0 on success and fills out_args, on error returns appropriate * errno value. * - * Caller is responsible to call of_node_put() on the returned out_args->node + * Caller is responsible to call of_node_put() on the returned out_args->np * pointer. * * Example: @@ -1568,7 +1568,7 @@ EXPORT_SYMBOL(of_parse_phandle_with_args); * Returns 0 on success and fills out_args, on error returns appropriate * errno value. * - * Caller is responsible to call of_node_put() on the returned out_args->node + * Caller is responsible to call of_node_put() on the returned out_args->np * pointer. * * Example: |