aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-05-31 16:13:19 +1000
committerStewart Smith <stewart@linux.ibm.com>2019-06-03 10:20:00 +1000
commit065cfb71eef26954f645f8d668bae930f493b140 (patch)
treed24df6305a09ebecd9b40e4db2eda7f2acfac1a8 /core
parent0c1a54e402633195e287f9f51ebd49a0a419af80 (diff)
downloadskiboot-065cfb71eef26954f645f8d668bae930f493b140.zip
skiboot-065cfb71eef26954f645f8d668bae930f493b140.tar.gz
skiboot-065cfb71eef26954f645f8d668bae930f493b140.tar.bz2
Remove unused OPAL_PCI_GET_XIVE_REISSUE and OPAL_PCI_SET_XIVE_REISSUE
These seem to be remnants of one of the OPAL incarnations prior to OPALv3. These calls have never been implemented in skiboot, and never used by an upstream kernel (nor a PowerKVM kernel). It's rather safe to just document them as never existing. Signed-off-by: Stewart Smith <stewart@linux.ibm.com> Reviewed-by: Andrew Donnellan <ajd@linux.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'core')
-rw-r--r--core/pci-opal.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/core/pci-opal.c b/core/pci-opal.c
index 9b8d400..2d21786 100644
--- a/core/pci-opal.c
+++ b/core/pci-opal.c
@@ -321,26 +321,6 @@ static int64_t opal_pci_set_mve_enable(uint64_t phb_id, uint32_t mve_number,
}
opal_call(OPAL_PCI_SET_MVE_ENABLE, opal_pci_set_mve_enable, 3);
-static int64_t opal_pci_get_xive_reissue(uint64_t phb_id __unused,
- uint32_t xive_number __unused,
- uint8_t *p_bit __unused,
- uint8_t *q_bit __unused)
-{
- /* IODA2 (P8) stuff, TODO */
- return OPAL_UNSUPPORTED;
-}
-opal_call(OPAL_PCI_GET_XIVE_REISSUE, opal_pci_get_xive_reissue, 4);
-
-static int64_t opal_pci_set_xive_reissue(uint64_t phb_id __unused,
- uint32_t xive_number __unused,
- uint8_t p_bit __unused,
- uint8_t q_bit __unused)
-{
- /* IODA2 (P8) stuff, TODO */
- return OPAL_UNSUPPORTED;
-}
-opal_call(OPAL_PCI_SET_XIVE_REISSUE, opal_pci_set_xive_reissue, 4);
-
static int64_t opal_pci_msi_eoi(uint64_t phb_id,
uint32_t hwirq)
{