diff options
author | Michael Clark <michaeljclark@mac.com> | 2018-02-15 23:30:29 +0300 |
---|---|---|
committer | Palmer Dabbelt <palmer@sifive.com> | 2018-02-20 21:56:26 +0300 |
commit | 8b08f50152ff85a4780e5c385d2b65889406e842 (patch) | |
tree | cd393b1fa360a62e686805cb7d2f0b5ef1e16a4d /arch/riscv/kernel/head.S | |
parent | bcae803a213172c79ab5d077f169e3428e44d2ba (diff) | |
download | linux-8b08f50152ff85a4780e5c385d2b65889406e842.tar.xz |
Rename sbi_save to parse_dtb to improve code readability
The sbi_ prefix would seem to indicate an SBI interface, and save is not
very specific. After applying this patch, reading head.S makes more sense.
Signed-off-by: Michael Clark <michaeljclark@mac.com>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'arch/riscv/kernel/head.S')
-rw-r--r-- | arch/riscv/kernel/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/kernel/head.S b/arch/riscv/kernel/head.S index 226eeb190f90..6e07ed37bbff 100644 --- a/arch/riscv/kernel/head.S +++ b/arch/riscv/kernel/head.S @@ -64,7 +64,7 @@ ENTRY(_start) /* Start the kernel */ mv a0, s0 mv a1, s1 - call sbi_save + call parse_dtb tail start_kernel relocate: |