mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
13 lines
197 B
ArmAsm
13 lines
197 B
ArmAsm
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* (C) Copyright 2021 Arm Limited
|
||
|
*/
|
||
|
|
||
|
.global save_boot_params
|
||
|
save_boot_params:
|
||
|
|
||
|
adr x8, prior_stage_fdt_address
|
||
|
str x0, [x8]
|
||
|
|
||
|
b save_boot_params_ret
|