mirror of
https://github.com/torvalds/linux.git
synced 2024-12-24 11:51:27 +00:00
7b2c3c5b1d
Create a helper function (alloc_maybe_bootmem) that is marked __init_refok to limit the chances of mistakenly referring to other __init routines. WARNING: vmlinux.o(.text+0x2a9c4): Section mismatch: reference to .init.text:.__alloc_bootmem (between '.update_dn_pci_info' and '.pci_dn_reconfig_notifier') WARNING: vmlinux.o(.text+0x36430): Section mismatch: reference to .init.text:.__alloc_bootmem (between '.mpic_msi_init_allocator' and '.find_ht_magic_addr') WARNING: vmlinux.o(.text+0x5e804): Section mismatch: reference to .init.text:.__alloc_bootmem (between '.celleb_setup_phb' and '.celleb_fake_pci_write_config') WARNING: vmlinux.o(.text+0x5e8e8): Section mismatch: reference to .init.text:.__alloc_bootmem (between '.celleb_setup_phb' and '.celleb_fake_pci_write_config') WARNING: vmlinux.o(.text+0x5e968): Section mismatch: reference to .init.text:.__alloc_bootmem (between '.celleb_setup_phb' and '.celleb_fake_pci_write_config') Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
28 lines
682 B
Makefile
28 lines
682 B
Makefile
#
|
|
# Makefile for ppc-specific library files..
|
|
#
|
|
|
|
ifeq ($(CONFIG_PPC64),y)
|
|
EXTRA_CFLAGS += -mno-minimal-toc
|
|
endif
|
|
|
|
ifeq ($(CONFIG_PPC_MERGE),y)
|
|
obj-y := string.o alloc.o
|
|
obj-$(CONFIG_PPC32) += div64.o copy_32.o checksum_32.o
|
|
endif
|
|
|
|
obj-$(CONFIG_PPC64) += checksum_64.o copypage_64.o copyuser_64.o \
|
|
memcpy_64.o usercopy_64.o mem_64.o string.o
|
|
obj-$(CONFIG_QUICC_ENGINE) += rheap.o
|
|
obj-$(CONFIG_XMON) += sstep.o
|
|
obj-$(CONFIG_KPROBES) += sstep.o
|
|
obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-noncoherent.o
|
|
|
|
ifeq ($(CONFIG_PPC64),y)
|
|
obj-$(CONFIG_SMP) += locks.o
|
|
endif
|
|
|
|
# Temporary hack until we have migrated to asm-powerpc
|
|
obj-$(CONFIG_8xx) += rheap.o
|
|
obj-$(CONFIG_CPM2) += rheap.o
|