diff options
author | Simon Glass | 2020-12-16 21:20:28 -0700 |
---|---|---|
committer | Simon Glass | 2020-12-18 20:32:21 -0700 |
commit | b5b11558bc2d7088dfbb67253d8b094782334dea (patch) | |
tree | a25d54fbc6bf0d82e391f853e4d68aded9a2687a /include/dm/uclass.h | |
parent | 93f44e8a8c8c7878c76d3415f1d425d4fa418287 (diff) |
dm: Drop uclass_resolve_seq()
This function is not needed anymore. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/uclass.h')
-rw-r--r-- | include/dm/uclass.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/dm/uclass.h b/include/dm/uclass.h index c4cd58349ed..91edbfb47d4 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -369,21 +369,6 @@ int uclass_first_device_drvdata(enum uclass_id id, ulong driver_data, struct udevice **devp); /** - * uclass_resolve_seq() - Resolve a device's sequence number - * - * On entry dev->seq is -1, and dev->req_seq may be -1 (to allocate a - * sequence number automatically, or >= 0 to select a particular number. - * If the requested sequence number is in use, then this device will - * be allocated another one. - * - * Note that the device's seq value is not changed by this function. - * - * @dev: Device for which to allocate sequence number - * @return sequence number allocated, or -ve on error - */ -int uclass_resolve_seq(struct udevice *dev); - -/** * uclass_id_foreach_dev() - Helper function to iteration through devices * * This creates a for() loop which works through the available devices in |