mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
1dee20262f
There was only one global function in vpdinfo.c and it was only called from pci.c, so merge them and make the function static. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
18 lines
507 B
Makefile
18 lines
507 B
Makefile
EXTRA_CFLAGS += -mno-minimal-toc
|
|
|
|
extra-y += dt.o
|
|
|
|
obj-y += exception.o
|
|
obj-y += hvlog.o hvlpconfig.o lpardata.o setup.o dt_mod.o mf.o lpevents.o \
|
|
hvcall.o proc.o htab.o iommu.o misc.o irq.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_VIOPATH) += viopath.o vio.o
|
|
obj-$(CONFIG_MODULES) += ksyms.o
|
|
|
|
quiet_cmd_dt_strings = DT_STR $@
|
|
cmd_dt_strings = $(OBJCOPY) --rename-section .rodata.str1.8=.dt_strings \
|
|
$< $@
|
|
|
|
$(obj)/dt_mod.o: $(obj)/dt.o
|
|
$(call if_changed,dt_strings)
|