From: Niklas Schnelle Date: Fri, 21 Aug 2020 08:26:40 +0000 (+0200) Subject: s390/pci: remove unused function zpci_rescan() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2bce60b5032fe3ca225a36b80f6df90938f0ead6;p=linux.git s390/pci: remove unused function zpci_rescan() the only caller of this was removed as part of the suspend/resume removal so no need to keep this function around. Reviewed-by: Matthew Rosato Signed-off-by: Niklas Schnelle Signed-off-by: Vasily Gorbik --- diff --git a/arch/s390/include/asm/pci.h b/arch/s390/include/asm/pci.h index 8015b93015339..140cb6bc8e1c6 100644 --- a/arch/s390/include/asm/pci.h +++ b/arch/s390/include/asm/pci.h @@ -233,12 +233,10 @@ static inline bool zpci_use_mio(struct zpci_dev *zdev) /* Error handling and recovery */ void zpci_event_error(void *); void zpci_event_availability(void *); -void zpci_rescan(void); bool zpci_is_enabled(void); #else /* CONFIG_PCI */ static inline void zpci_event_error(void *e) {} static inline void zpci_event_availability(void *e) {} -static inline void zpci_rescan(void) {} #endif /* CONFIG_PCI */ #ifdef CONFIG_HOTPLUG_PCI_S390 diff --git a/arch/s390/pci/pci.c b/arch/s390/pci/pci.c index e432318f69372..0ff48c51cd0e3 100644 --- a/arch/s390/pci/pci.c +++ b/arch/s390/pci/pci.c @@ -890,9 +890,3 @@ out: return rc; } subsys_initcall_sync(pci_base_init); - -void zpci_rescan(void) -{ - if (zpci_is_enabled()) - clp_rescan_pci_devices_simple(NULL); -}