diff options
author | Simon Glass <sjg@chromium.org> | 2020-12-28 20:34:55 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-01-05 12:26:35 -0700 |
commit | 8629d30a32e7b4ff8323292364116c08033bd57b (patch) | |
tree | 54ecbaa9d6b5dc3d30f037c88cf1fd23e2cc602b /doc/driver-model | |
parent | 20e442ab2df355450006574fff178c746d254a18 (diff) | |
download | u-boot-8629d30a32e7b4ff8323292364116c08033bd57b.tar.gz u-boot-8629d30a32e7b4ff8323292364116c08033bd57b.tar.xz u-boot-8629d30a32e7b4ff8323292364116c08033bd57b.zip |
dm: Rename DM_GET_DEVICE() to DM_DRVINFO_GET()
This does not get a device (struct udevice *) but a struct driver_info *
so the name is confusing.
Rename it accordingly. Since we plan to have several various of these
macros, put GET at the end instead of the middle, so it is easier to spot
the related macros.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc/driver-model')
-rw-r--r-- | doc/driver-model/of-plat.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/driver-model/of-plat.rst b/doc/driver-model/of-plat.rst index 39e6295aa0..21b45f6a7e 100644 --- a/doc/driver-model/of-plat.rst +++ b/doc/driver-model/of-plat.rst @@ -339,7 +339,7 @@ prevents them being used inadvertently. All usage must be bracketed with The dt-plat.c file contains the device declarations and is is built in spl/dt-plat.c. It additionally contains the definition of dm_populate_phandle_data() which is responsible of filling the phandle -information by adding references to U_BOOT_DRVINFO by using DM_GET_DEVICE +information by adding references to U_BOOT_DRVINFO by using DM_DRVINFO_GET The pylibfdt Python module is used to access the devicetree. |