alpha: remove __init annotation from exported page_is_ram()

EXPORT_SYMBOL and __init is a bad combination because the .init.text
section is freed up after the initialization.

Commit c5a130325f13 ("ACPI/APEI: Add parameter check before error
injection") exported page_is_ram(), hence the __init annotation should
be removed.

This fixes the modpost warning in ARCH=alpha builds:

WARNING: modpost: vmlinux: page_is_ram: EXPORT_SYMBOL used for init symbol. Remove __init or EXPORT_SYMBOL.

Fixes: c5a130325f13 ("ACPI/APEI: Add parameter check before error injection")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

Changed files
+1 -2
arch
alpha
kernel
+1 -2
arch/alpha/kernel/setup.c
··· 385 385 #endif /* CONFIG_BLK_DEV_INITRD */ 386 386 } 387 387 388 - int __init 389 - page_is_ram(unsigned long pfn) 388 + int page_is_ram(unsigned long pfn) 390 389 { 391 390 struct memclust_struct * cluster; 392 391 struct memdesc_struct * memdesc;