diff options
author | Laurent Dufour <ldufour@linux.ibm.com> | 2023-07-25 15:27:59 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2023-08-02 22:22:19 +1000 |
commit | 7f96539437eafec8fd062fb13f31cf53251ea18d (patch) | |
tree | a247fb2f472796127f9831dd532a225f3a14b093 /arch/powerpc/kexec | |
parent | bbfa509d632946578d4f19aa2cedf1ca2f34565d (diff) | |
download | linux-7f96539437eafec8fd062fb13f31cf53251ea18d.tar.gz linux-7f96539437eafec8fd062fb13f31cf53251ea18d.tar.bz2 linux-7f96539437eafec8fd062fb13f31cf53251ea18d.zip |
powerpc/kexec: fix minor typo
Function name in the descriptor was not correct.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202307251721.bUGcsCeQ-lkp@intel.com/
Signed-off-by: Laurent Dufour <ldufour@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20230725132759.53975-1-ldufour@linux.ibm.com
Diffstat (limited to 'arch/powerpc/kexec')
-rw-r--r-- | arch/powerpc/kexec/file_load_64.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/kexec/file_load_64.c b/arch/powerpc/kexec/file_load_64.c index 7e69be55451a..17534daa3c48 100644 --- a/arch/powerpc/kexec/file_load_64.c +++ b/arch/powerpc/kexec/file_load_64.c @@ -933,9 +933,9 @@ out: } /** - * get_cpu_node_size - Compute the size of a CPU node in the FDT. - * This should be done only once and the value is stored in - * a static variable. + * cpu_node_size - Compute the size of a CPU node in the FDT. + * This should be done only once and the value is stored in + * a static variable. * Returns the max size of a CPU node in the FDT. */ static unsigned int cpu_node_size(void) |