svn commit: r302847 - head/sys/dev/pci

Andrew Turner andrew at FreeBSD.org
Thu Jul 14 16:52:19 UTC 2016


Author: andrew
Date: Thu Jul 14 16:52:18 2016
New Revision: 302847
URL: https://svnweb.freebsd.org/changeset/base/302847

Log:
  Remove support for the arm64 pre-INTRNG interrupt framework from the PCI
  driver. Support for this was removed in r302375.
  
  Obtained from:	ABT Systems Ltd
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/dev/pci/pci_host_generic.c

Modified: head/sys/dev/pci/pci_host_generic.c
==============================================================================
--- head/sys/dev/pci/pci_host_generic.c	Thu Jul 14 15:39:31 2016	(r302846)
+++ head/sys/dev/pci/pci_host_generic.c	Thu Jul 14 16:52:18 2016	(r302847)
@@ -724,8 +724,6 @@ generic_pcie_alloc_msi(device_t pci, dev
 	    NULL);
 	return (intr_alloc_msi(pci, child, msi_parent, count, maxcount,
 	    irqs));
-#elif defined(__aarch64__)
-	return (arm_alloc_msi(pci, child, count, maxcount, irqs));
 #else
 	return (ENXIO);
 #endif
@@ -740,8 +738,6 @@ generic_pcie_release_msi(device_t pci, d
 	ofw_bus_msimap(ofw_bus_get_node(pci), pci_get_rid(child), &msi_parent,
 	    NULL);
 	return (intr_release_msi(pci, child, msi_parent, count, irqs));
-#elif defined(__aarch64__)
-	return (arm_release_msi(pci, child, count, irqs));
 #else
 	return (ENXIO);
 #endif
@@ -757,8 +753,6 @@ generic_pcie_map_msi(device_t pci, devic
 	ofw_bus_msimap(ofw_bus_get_node(pci), pci_get_rid(child), &msi_parent,
 	    NULL);
 	return (intr_map_msi(pci, child, msi_parent, irq, addr, data));
-#elif defined(__aarch64__)
-	return (arm_map_msi(pci, child, irq, addr, data));
 #else
 	return (ENXIO);
 #endif
@@ -773,8 +767,6 @@ generic_pcie_alloc_msix(device_t pci, de
 	ofw_bus_msimap(ofw_bus_get_node(pci), pci_get_rid(child), &msi_parent,
 	    NULL);
 	return (intr_alloc_msix(pci, child, msi_parent, irq));
-#elif defined(__aarch64__)
-	return (arm_alloc_msix(pci, child, irq));
 #else
 	return (ENXIO);
 #endif
@@ -789,8 +781,6 @@ generic_pcie_release_msix(device_t pci, 
 	ofw_bus_msimap(ofw_bus_get_node(pci), pci_get_rid(child), &msi_parent,
 	    NULL);
 	return (intr_release_msix(pci, child, msi_parent, irq));
-#elif defined(__aarch64__)
-	return (arm_release_msix(pci, child, irq));
 #else
 	return (ENXIO);
 #endif


More information about the svn-src-all mailing list