Re: [PATCH] irqchip/gic-v3: use __init where appropriate

2019-01-03 Thread Stefan Agner
On 03.01.2019 12:08, Marc Zyngier wrote: > Hi Stephan, > > On 29/12/2018 14:14, Stefan Agner wrote: >> Compiling with section mismatch debugging enabled prints the >> following warning: >> WARNING: vmlinux.o(.text+0xffa1b8): Section mismatch in reference from >> the function gic_smp_init() to

Re: [PATCH] irqchip/gic-v3: use __init where appropriate

2019-01-03 Thread Marc Zyngier
Hi Stephan, On 29/12/2018 14:14, Stefan Agner wrote: > Compiling with section mismatch debugging enabled prints the > following warning: > WARNING: vmlinux.o(.text+0xffa1b8): Section mismatch in reference from > the function gic_smp_init() to the function .init.text:set_smp_cross_call() > >

[PATCH] irqchip/gic-v3: use __init where appropriate

2018-12-29 Thread Stefan Agner
Compiling with section mismatch debugging enabled prints the following warning: WARNING: vmlinux.o(.text+0xffa1b8): Section mismatch in reference from the function gic_smp_init() to the function .init.text:set_smp_cross_call() Avoid this warning by adding __init to gic_smp_init(). While add