From: Rasmus Villemoes Date: Mon, 20 Jun 2022 08:53:21 +0000 (+0200) Subject: imx8m: soc.c: use rom_api_query_boot_infor() wrapper X-Git-Tag: v2022.10~70^2~101 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f963622f2892652d72fc59838a022a6ab92b0829;p=platform%2Fkernel%2Fu-boot.git imx8m: soc.c: use rom_api_query_boot_infor() wrapper Reviewed-by: Peng Fan Signed-off-by: Rasmus Villemoes --- diff --git a/arch/arm/mach-imx/imx8m/soc.c b/arch/arm/mach-imx/imx8m/soc.c index e4e5607..81fee58 100644 --- a/arch/arm/mach-imx/imx8m/soc.c +++ b/arch/arm/mach-imx/imx8m/soc.c @@ -602,16 +602,13 @@ struct rom_api *g_rom_api = (struct rom_api *)0x980; enum boot_device get_boot_device(void) { - volatile gd_t *pgd = gd; int ret; u32 boot; u16 boot_type; u8 boot_instance; enum boot_device boot_dev = SD1_BOOT; - ret = g_rom_api->query_boot_infor(QUERY_BT_DEV, &boot, - ((uintptr_t)&boot) ^ QUERY_BT_DEV); - set_gd(pgd); + ret = rom_api_query_boot_infor(QUERY_BT_DEV, &boot); if (ret != ROM_API_OKAY) { puts("ROMAPI: failure at query_boot_info\n");