diff options
| author | Simon Glass <[email protected]> | 2024-11-15 16:19:24 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-01-15 08:48:43 -0600 |
| commit | a3d0fadca6b14f57477a4143334993daf52f89dc (patch) | |
| tree | f046b8bd5b6f07a7c3cb98f8a81e8a199d285324 /include/bootdev.h | |
| parent | d9055f5e4f3c62e693991e15222804ed6c1a93ef (diff) | |
bootstd: Export bootdev_get_from_blk()
Export this function so it can be used from other files.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/bootdev.h')
| -rw-r--r-- | include/bootdev.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/bootdev.h b/include/bootdev.h index 991b6229c1c..12c90c4ec1b 100644 --- a/include/bootdev.h +++ b/include/bootdev.h @@ -402,6 +402,15 @@ static int bootdev_setup_for_sibling_blk(struct udevice *blk, int bootdev_get_sibling_blk(struct udevice *dev, struct udevice **blkp); /** + * bootdev_get_from_blk() - Get the bootdev given a block device + * + * @blk: Block device to check + * @bootdebp: Returns the bootdev found, if any + * Return 0 if OK, -ve on error + */ +int bootdev_get_from_blk(struct udevice *blk, struct udevice **bootdevp); + +/** * bootdev_unbind_dev() - Unbind a bootdev device * * Remove and unbind a bootdev device which is a child of @parent. This should |
