1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

clk: Modify xlate() method for livetree

Update the xlate() method to use ofnode_phandle_args instead of the fdtdec
variant. This will allow drivers to support a live device tree.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2017-05-18 20:09:40 -06:00
parent a1e4adee99
commit a4e0ef50da
5 changed files with 10 additions and 9 deletions

View File

@@ -12,7 +12,8 @@
/* See clk.h for background documentation. */
#include <clk.h>
#include <fdtdec.h>
struct ofnode_phandle_args;
/**
* struct clk_ops - The functions that a clock driver must implement.
@@ -37,7 +38,7 @@ struct clk_ops {
* @return 0 if OK, or a negative error code.
*/
int (*of_xlate)(struct clk *clock,
struct fdtdec_phandle_args *args);
struct ofnode_phandle_args *args);
/**
* request - Request a translated clock.
*