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 /doc/driver-model | |
parent | 8fed2eb20c2ef95d69f9683ab07f0ea869616713 (diff) |
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 'doc/driver-model')
-rw-r--r-- | doc/driver-model/of-plat.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/driver-model/of-plat.txt b/doc/driver-model/of-plat.txt index 3ed8c759d6..732bc34f06 100644 --- a/doc/driver-model/of-plat.txt +++ b/doc/driver-model/of-plat.txt @@ -111,7 +111,7 @@ struct dtd_rockchip_rk3288_dw_mshc { bool cap_sd_highspeed; fdt32_t card_detect_delay; fdt32_t clock_freq_min_max[2]; - struct phandle_2_cell clocks[4]; + struct phandle_1_arg clocks[4]; bool disable_wp; fdt32_t fifo_depth; fdt32_t interrupts[3]; |