aboutsummaryrefslogtreecommitdiff
path: root/hdata/spira.c
diff options
context:
space:
mode:
Diffstat (limited to 'hdata/spira.c')
-rw-r--r--hdata/spira.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/hdata/spira.c b/hdata/spira.c
index 77c937b..7c5918d 100644
--- a/hdata/spira.c
+++ b/hdata/spira.c
@@ -1451,7 +1451,7 @@ static void add_stop_levels(void)
#define NPU_INDIRECT1 0x800000000c010c3fULL
static void add_npu(struct dt_node *xscom, const struct HDIF_array_hdr *links,
- int npu_index, int phb_index)
+ int npu_index)
{
const struct sppcrd_smp_link *link;
struct dt_node *npu;
@@ -1472,7 +1472,6 @@ static void add_npu(struct dt_node *xscom, const struct HDIF_array_hdr *links,
dt_add_property_cells(npu, "#address-cells", 1);
dt_add_property_strings(npu, "compatible", "ibm,power9-npu");
- dt_add_property_cells(npu, "ibm,phb-index", phb_index);
dt_add_property_cells(npu, "ibm,npu-index", npu_index);
HDIF_iarray_for_each(links, i, link) {
@@ -1622,7 +1621,6 @@ static void add_npu(struct dt_node *xscom, const struct HDIF_array_hdr *links,
static void add_npus(void)
{
struct dt_node *xscom;
- int phb_index = 7; /* Start counting from 7, for no reason */
int npu_index = 0;
/* Only consult HDAT for npu2 */
@@ -1647,7 +1645,7 @@ static void add_npus(void)
/* some hostboots will give us an empty array */
if (be32_to_cpu(links->ecnt))
- add_npu(xscom, links, npu_index++, phb_index++);
+ add_npu(xscom, links, npu_index++);
}
}