mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
cbfs: Return the error code from file_cbfs_init()
We may as well return the error code and use it directly in the command code. CBFS still uses its own error enum which we may be able to remove, but leave it for now. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
@@ -98,10 +98,10 @@ enum cbfs_result cbfs_get_result(void);
|
||||
/**
|
||||
* file_cbfs_init() - Initialize the CBFS driver and load metadata into RAM.
|
||||
*
|
||||
* @end_of_rom: Points to the end of the ROM the CBFS should be read
|
||||
* from.
|
||||
* @end_of_rom: Points to the end of the ROM the CBFS should be read from
|
||||
* @return 0 if OK, -ve on error
|
||||
*/
|
||||
void file_cbfs_init(ulong end_of_rom);
|
||||
int file_cbfs_init(ulong end_of_rom);
|
||||
|
||||
/**
|
||||
* file_cbfs_get_header() - Get the header structure for the current CBFS.
|
||||
|
||||
Reference in New Issue
Block a user