diff options
author | Simon Glass <sjg@chromium.org> | 2020-12-28 20:35:05 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-01-05 12:26:35 -0700 |
commit | d960f0db289144a80553e4d226d5dd145d63926a (patch) | |
tree | bb23dec6d716a8c8bb1375f5d993aa9b90b193e3 /include/dm | |
parent | 9eca08dc5986c9e00bb68a4529ec9404a282bc57 (diff) | |
download | u-boot-d960f0db289144a80553e4d226d5dd145d63926a.tar.gz |
dtoc: Drop dm_populate_phandle_data()
This has not been needed since parent information was added and we started
using indicies for references to other drivers instead of pointers. It was
kept around in the expectation that it might be needed later.
However with the latest updates, it doesn't seem likely that we'll need
this in the foreseeable future.
Drop dm_populate_phandle_data() from dtoc and driver model.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm')
-rw-r--r-- | include/dm/platdata.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/dm/platdata.h b/include/dm/platdata.h index dc3cbfcbc7..3821a56f2c 100644 --- a/include/dm/platdata.h +++ b/include/dm/platdata.h @@ -86,12 +86,4 @@ struct driver_rt { #define DM_DRVINFO_GET(__name) \ ll_entry_get(struct driver_info, __name, driver_info) -/** - * dm_populate_phandle_data() - Populates phandle data in platda - * - * This populates phandle data with an U_BOOT_DRVINFO entry get by - * DM_DRVINFO_GET. The implementation of this function will be done - * by dtoc when parsing dtb. - */ -void dm_populate_phandle_data(void); #endif |