diff options
author | Simon Glass | 2015-06-23 15:38:38 -0600 |
---|---|---|
committer | Simon Glass | 2015-07-21 17:39:23 -0600 |
commit | 132f9bfc9ed0761fe349d2609918fa8a61e20692 (patch) | |
tree | 2c2156d94188ce7e7e0a13f8b8098db62179f44f /include/dm/device.h | |
parent | 2693047acdcdae20b066715d0da4937814347935 (diff) |
dm: core: Correct device_get_child_by_of_offset() parameter
This parameter is named 'seq' but should be named 'of_offset'.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/device.h')
-rw-r--r-- | include/dm/device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/device.h b/include/dm/device.h index 9a94ee19d9c..9fa0048bd0a 100644 --- a/include/dm/device.h +++ b/include/dm/device.h @@ -386,7 +386,7 @@ int device_find_child_by_of_offset(struct udevice *parent, int of_offset, * @devp: Returns pointer to device if found, otherwise this is set to NULL * @return 0 if OK, -ve on error */ -int device_get_child_by_of_offset(struct udevice *parent, int seq, +int device_get_child_by_of_offset(struct udevice *parent, int of_offset, struct udevice **devp); /** |