1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

dm: reset: Update uclass to support livetree

Update the reset domain uclass to support livetree. Fix the xlate() method
which has no callers.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2017-05-18 20:09:50 -06:00
parent 424b2fe939
commit 40a475e841
2 changed files with 12 additions and 13 deletions

View File

@@ -11,7 +11,7 @@
#include <reset.h>
struct fdtdec_phandle_args;
struct ofnode_phandle_args;
struct udevice;
/**
@@ -38,7 +38,7 @@ struct reset_ops {
* @return 0 if OK, or a negative error code.
*/
int (*of_xlate)(struct reset_ctl *reset_ctl,
struct fdtdec_phandle_args *args);
struct ofnode_phandle_args *args);
/**
* request - Request a translated reset control.
*