diff options
author | Sebastian Ott <sebott@linux.vnet.ibm.com> | 2013-04-16 14:14:44 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2013-04-17 14:07:37 +0200 |
commit | cbcca5d070c30909fd355018ed96134ee9018425 (patch) | |
tree | 869e1b9966b80c4e81b71b1d448e238b1e958cb2 /arch/s390/pci/Makefile | |
parent | s390/pci: implement pcibios_add_device (diff) | |
download | linux-cbcca5d070c30909fd355018ed96134ee9018425.tar.xz linux-cbcca5d070c30909fd355018ed96134ee9018425.zip |
s390/pci: uninline instruction wrappers
Uninline pci related instruction wrappers to de-bloat the code:
add/remove: 15/0 grow/shrink: 2/24 up/down: 1326/-12628 (-11302)
This is especially useful for the inlined pci read and write functions
which are used all over the kernel. Also remove the unused __stpcifc
while at it.
Reviewed-by: Gerald Schaefer <gerald.schaefer@de.ibm.com>
Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/pci/Makefile')
-rw-r--r-- | arch/s390/pci/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/pci/Makefile b/arch/s390/pci/Makefile index f0f426a113ce..086a2e37935d 100644 --- a/arch/s390/pci/Makefile +++ b/arch/s390/pci/Makefile @@ -2,5 +2,5 @@ # Makefile for the s390 PCI subsystem. # -obj-$(CONFIG_PCI) += pci.o pci_dma.o pci_clp.o pci_msi.o \ - pci_sysfs.o pci_event.o pci_debug.o +obj-$(CONFIG_PCI) += pci.o pci_dma.o pci_clp.o pci_msi.o pci_sysfs.o \ + pci_event.o pci_debug.o pci_insn.o |