diff options
author | Christoph Hellwig <hch@lst.de> | 2019-08-13 09:25:04 +0200 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2019-08-16 20:33:57 +0200 |
commit | 768557ca5b062e14ccdc55d255f7ff50bb90d40a (patch) | |
tree | 0517f7ea0e27d83983aa19ddff7a2657f436a809 /arch/ia64/kernel/sys_ia64.c | |
parent | ia64: remove the hpsim platform (diff) | |
download | linux-768557ca5b062e14ccdc55d255f7ff50bb90d40a.tar.xz linux-768557ca5b062e14ccdc55d255f7ff50bb90d40a.zip |
ia64: remove CONFIG_PCI ifdefs
Now that hpsim support is gone, CONFIG_PCI is forced on for ia64, and
we can remove a few ifdefs for it.
Acked-by: Tom Vaden <tom.vaden@hpe.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lkml.kernel.org/r/20190813072514.23299-19-hch@lst.de
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/sys_ia64.c')
-rw-r--r-- | arch/ia64/kernel/sys_ia64.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/ia64/kernel/sys_ia64.c b/arch/ia64/kernel/sys_ia64.c index 9ebe1d633abc..e14db25146c2 100644 --- a/arch/ia64/kernel/sys_ia64.c +++ b/arch/ia64/kernel/sys_ia64.c @@ -166,21 +166,3 @@ ia64_mremap (unsigned long addr, unsigned long old_len, unsigned long new_len, u force_successful_syscall_return(); return addr; } - -#ifndef CONFIG_PCI - -asmlinkage long -sys_pciconfig_read (unsigned long bus, unsigned long dfn, unsigned long off, unsigned long len, - void *buf) -{ - return -ENOSYS; -} - -asmlinkage long -sys_pciconfig_write (unsigned long bus, unsigned long dfn, unsigned long off, unsigned long len, - void *buf) -{ - return -ENOSYS; -} - -#endif /* CONFIG_PCI */ |