mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-24 15:42:48 +00:00
exynos: Correct return value in exynos_mmc_init()
This function should return 0 on success, not 1. Fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
c7d50e7fb9
commit
c95ed7d9e7
1 changed files with 1 additions and 1 deletions
|
@ -202,6 +202,6 @@ int exynos_mmc_init(const void *blob)
|
|||
|
||||
process_nodes(blob, node_list, count);
|
||||
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue