board-info: Use sysinfo_get()
authorMarek Vasut <marek.vasut@gmail.com>
Sun, 4 Jul 2021 19:32:04 +0000 (21:32 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 14 Jul 2021 20:47:59 +0000 (16:47 -0400)
commit10f3e157e8f9d95860033fcaec2953f8cf11d2d6
treec569c600bc1632b9ae9079f87843ee3402247749
parentfc3292cbeb4d9fca76a6a1b73acccc63ef0dddd9
board-info: Use sysinfo_get()

Replace uclass_first_device_err(UCLASS_SYSINFO, &dev) with sysinfo_get(&dev).
The board_info code may use sysinfo to print board information, so use the
sysinfo functions consistently. The sysinfo_get() is internally implemented
as return uclass_first_device_err(UCLASS_SYSINFO, &dev) anyway, so there is
no functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Cc: Simon Glass <sjg@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
common/board_info.c