diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-29 14:15:56 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-09-15 05:27:47 -0600 |
commit | 0d15463c0537806f70ea2359e32e4deb8c4766c2 (patch) | |
tree | 1179616d8c60355db39515d34d23bc62fe9eb50c /include/clk.h | |
parent | 8fed2eb20c2ef95d69f9683ab07f0ea869616713 (diff) | |
download | u-boot-0d15463c0537806f70ea2359e32e4deb8c4766c2.tar.gz |
dtoc: Rename the phandle struct
Rather than naming the phandle struct according to the number of cells it
uses (e.g. struct phandle_2_cell) name it according to the number of
arguments it has (e.g. struct phandle_1_arg). This is a more intuitive
naming.
Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'include/clk.h')
-rw-r--r-- | include/clk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clk.h b/include/clk.h index c5988f78a8..e7ce3e8576 100644 --- a/include/clk.h +++ b/include/clk.h @@ -61,9 +61,9 @@ struct clk { }; #if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK) -struct phandle_2_cell; +struct phandle_1_arg; int clk_get_by_index_platdata(struct udevice *dev, int index, - struct phandle_2_cell *cells, struct clk *clk); + struct phandle_1_arg *cells, struct clk *clk); /** * clock_get_by_index - Get/request a clock by integer index. |