mpc83xx: gazerbeam: Update sysinfo_get error handling

In a later patch sysinfo_get will be changed to return the device in cae
of an error. Set sysinfo to NULL on error to preserve previous behavior.

Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Michal Suchanek 2022-10-12 21:58:04 +02:00 committed by Simon Glass
parent 0736f7aa3b
commit 7b2aa218c7

View file

@ -49,8 +49,10 @@ int board_early_init_r(void)
int mc = 0;
int con = 0;
if (sysinfo_get(&sysinfo))
if (sysinfo_get(&sysinfo)) {
puts("Could not find sysinfo information device.\n");
sysinfo = NULL;
}
/* Initialize serdes */
uclass_get_device_by_phandle(UCLASS_MISC, sysinfo, "serdes", &serdes);
@ -92,8 +94,10 @@ int checksysinfo(void)
int mc = 0;
int con = 0;
if (sysinfo_get(&sysinfo))
if (sysinfo_get(&sysinfo)) {
puts("Could not find sysinfo information device.\n");
sysinfo = NULL;
}
sysinfo_get_int(sysinfo, BOARD_MULTICHANNEL, &mc);
sysinfo_get_int(sysinfo, BOARD_VARIANT, &con);
@ -130,8 +134,10 @@ int last_stage_init(void)
struct udevice *tpm;
int ret;
if (sysinfo_get(&sysinfo))
if (sysinfo_get(&sysinfo)) {
puts("Could not find sysinfo information device.\n");
sysinfo = NULL;
}
if (sysinfo) {
int res = sysinfo_get_int(sysinfo, BOARD_HWVERSION,