mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
dm: reset: Allow reset_walk() to return
Add a new reset_walk_halt() function to cause a reset and then halt on failure. The reset_walk() function returns an error code. This is needed for testing since otherwise U-Boot will halt in the middle of a test. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -51,8 +51,17 @@ int reset_request(struct udevice *dev, enum reset_t type);
|
||||
* If this function fails to reset, it will display a message and halt
|
||||
*
|
||||
* @type: Reset type to request
|
||||
* @return -EINPROGRESS if a reset is in progress, -ENOSYS if not available
|
||||
*/
|
||||
void reset_walk(enum reset_t type);
|
||||
int reset_walk(enum reset_t type);
|
||||
|
||||
/**
|
||||
* reset_walk_halt() - try to reset, otherwise halt
|
||||
*
|
||||
* This calls reset_walk(). If it returns, indicating that reset is not
|
||||
* supported, it prints a message and halts.
|
||||
*/
|
||||
void reset_walk_halt(enum reset_t type);
|
||||
|
||||
/**
|
||||
* reset_cpu() - calls reset_walk(RESET_WARM)
|
||||
|
Reference in New Issue
Block a user