diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2007-05-23 04:08:13 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-06-02 07:01:55 -0400 |
commit | 5169b8a1659fef9cc093ed3d889a854945a18177 (patch) | |
tree | 6e230f443c0964c63d178d0fe630ac519801827f /arch/powerpc | |
parent | f285e3d329ce68cc355fadf4ab2c8f34d7f264cb (diff) |
[POWERPC] Update documentation for of_find_node_by_type()
The documentation for of_find_node_by_type() incorrectly refers to the
"name" parameter - it should be "type".
Also the behaviour when from == NULL is not really documented, fix that.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/prom.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 066a6a7a25b8..af42ddab3ab4 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c | |||
@@ -1171,11 +1171,12 @@ EXPORT_SYMBOL(of_find_node_by_name); | |||
1171 | 1171 | ||
1172 | /** | 1172 | /** |
1173 | * of_find_node_by_type - Find a node by its "device_type" property | 1173 | * of_find_node_by_type - Find a node by its "device_type" property |
1174 | * @from: The node to start searching from or NULL, the node | 1174 | * @from: The node to start searching from, or NULL to start searching |
1175 | * you pass will not be searched, only the next one | 1175 | * the entire device tree. The node you pass will not be |
1176 | * will; typically, you pass what the previous call | 1176 | * searched, only the next one will; typically, you pass |
1177 | * returned. of_node_put() will be called on it | 1177 | * what the previous call returned. of_node_put() will be |
1178 | * @name: The type string to match against | 1178 | * called on from for you. |
1179 | * @type: The type string to match against | ||
1179 | * | 1180 | * |
1180 | * Returns a node pointer with refcount incremented, use | 1181 | * Returns a node pointer with refcount incremented, use |
1181 | * of_node_put() on it when done. | 1182 | * of_node_put() on it when done. |