Fix section mismatch warning in parisc-agp: WARNING: modpost: drivers/char/agp/parisc-agp.o(.text+0x7a0): Section mismatch in reference from the function init_module() to the function .init.text:parisc_agp_setup.isra.0() The function init_module() references the function __init parisc_agp_setup.isra.0(). This is often because init_module lacks a __init annotation or the annotation of parisc_agp_setup.isra.0 is wrong. Fixes: 08a6436816f7 ("[PARISC] Add support for Quicksilver AGPGART") Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Reported-by: kernel test robot <lkp@xxxxxxxxx> Cc: Kyle McMartin <kyle@xxxxxxxxxxx> Cc: David Airlie <airlied@xxxxxxxx> Cc: "James E.J. Bottomley" <James.Bottomley@xxxxxxxxxxxxxxxxxxxxx> Cc: Helge Deller <deller@xxxxxx> Cc: linux-parisc@xxxxxxxxxxxxxxx --- drivers/char/agp/parisc-agp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20211126.orig/drivers/char/agp/parisc-agp.c +++ linux-next-20211126/drivers/char/agp/parisc-agp.c @@ -378,7 +378,7 @@ find_quicksilver(struct device *dev, voi return 0; } -static int +static int __init parisc_agp_init(void) { extern struct sba_device *sba_list;