Skip to content
Commit 9eaa192d authored by Helight.Xu's avatar Helight.Xu Committed by H. Peter Anvin
Browse files

x86: Fix a section mismatch in arch/x86/kernel/setup.c



copy_edd() should be __init.
warning msg:
WARNING: vmlinux.o(.text+0x7759): Section mismatch in reference from the
function copy_edd() to the variable .init.data:boot_params
The function copy_edd() references
the variable __initdata boot_params.
This is often because copy_edd lacks a __initdata
annotation or the annotation of boot_params is wrong.

Signed-off-by: default avatarZhenwenXu <helight.xu@gmail.com>
LKML-Reference: <4B139F8F.4000907@gmail.com>
Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
parent 6dbfe5a5
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment