exynos: return correct value when init_default_cbfs_media fails
BUG=none BRANCH=ToT TEST=Built daisy. Change-Id: I64033f8e7beb247b2b8bd66e58de6c5e263ee634 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 1ff51e887a07a0f2426e5111df683ce2a9d4097d Original-Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Original-Change-Id: Id6e006be1db08933dc97b5e797a85f3cbf9f6486 Original-Reviewed-on: https://chromium-review.googlesource.com/232513 Original-Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-on: http://review.coreboot.org/9735 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
ee28c86ccd
commit
e1298dfa07
|
@ -76,7 +76,12 @@ void *cbfs_simple_buffer_map(struct cbfs_simple_buffer *buffer,
|
||||||
void *cbfs_simple_buffer_unmap(struct cbfs_simple_buffer *buffer,
|
void *cbfs_simple_buffer_unmap(struct cbfs_simple_buffer *buffer,
|
||||||
const void *address);
|
const void *address);
|
||||||
|
|
||||||
/* Defined in individual arch / board implementation. */
|
|
||||||
|
/*
|
||||||
|
* Defined in individual arch / board implementation.
|
||||||
|
*
|
||||||
|
* it returns 0 on success and non-zero on error.
|
||||||
|
*/
|
||||||
int init_default_cbfs_media(struct cbfs_media *media);
|
int init_default_cbfs_media(struct cbfs_media *media);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -171,6 +171,6 @@ int init_default_cbfs_media(struct cbfs_media *media)
|
||||||
default:
|
default:
|
||||||
printk(BIOS_EMERG, "Exynos OM_STAT value 0x%x not supported!\n",
|
printk(BIOS_EMERG, "Exynos OM_STAT value 0x%x not supported!\n",
|
||||||
exynos_power->om_stat);
|
exynos_power->om_stat);
|
||||||
return 0;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -178,6 +178,6 @@ int init_default_cbfs_media(struct cbfs_media *media)
|
||||||
default:
|
default:
|
||||||
printk(BIOS_EMERG, "Exynos OM_STAT value 0x%x not supported!\n",
|
printk(BIOS_EMERG, "Exynos OM_STAT value 0x%x not supported!\n",
|
||||||
exynos_power->om_stat);
|
exynos_power->om_stat);
|
||||||
return 0;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue