mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 02:50:53 +07:00
sh64: Fix up section mismatch warnings.
WARNING: vmlinux.o(.cpuinit.text+0x280): Section mismatch in reference from the function cpu_probe() to the function .init.text:sh64_tlb_init() The function __cpuinit cpu_probe() references a function __init sh64_tlb_init(). If sh64_tlb_init is only used by cpu_probe then annotate sh64_tlb_init with a matching annotation. sh64_tlb_init() simply needs to be __cpuinit annotated, so fix that up. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
0375a73c6f
commit
0412ddc822
@ -17,7 +17,7 @@
|
|||||||
/**
|
/**
|
||||||
* sh64_tlb_init - Perform initial setup for the DTLB and ITLB.
|
* sh64_tlb_init - Perform initial setup for the DTLB and ITLB.
|
||||||
*/
|
*/
|
||||||
int __init sh64_tlb_init(void)
|
int __cpuinit sh64_tlb_init(void)
|
||||||
{
|
{
|
||||||
/* Assign some sane DTLB defaults */
|
/* Assign some sane DTLB defaults */
|
||||||
cpu_data->dtlb.entries = 64;
|
cpu_data->dtlb.entries = 64;
|
||||||
|
Loading…
Reference in New Issue
Block a user