Message ID | 20200508152653.157663-1-wangkefeng.wang@huawei.com |
---|---|
State | New |
Headers | show |
Series | [-next] arm64: gtdt: Fix section mismatch in next_platform_timer() | expand |
diff --git a/drivers/acpi/arm64/gtdt.c b/drivers/acpi/arm64/gtdt.c index 01962c63a711..6a327616a299 100644 --- a/drivers/acpi/arm64/gtdt.c +++ b/drivers/acpi/arm64/gtdt.c @@ -34,7 +34,7 @@ struct acpi_gtdt_descriptor { void *platform_timer; }; -static struct acpi_gtdt_descriptor acpi_gtdt_desc __initdata; +static struct acpi_gtdt_descriptor acpi_gtdt_desc; static inline void *next_platform_timer(void *platform_timer) {
Drop the __initdata for acpi_gtdt_desc variable to fix the section mismatch, WARNING: modpost: vmlinux.o(.text.unlikely+0x95ac): Section mismatch in reference from the function next_platform_timer() to the variable .init.data:acpi_gtdt_desc The function next_platform_timer() references the variable __initdata acpi_gtdt_desc. This is often because next_platform_timer lacks a __initdata annotation or the annotation of acpi_gtdt_desc is wrong. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> --- drivers/acpi/arm64/gtdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)