aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2016-11-14 13:06:16 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-11-15 15:06:03 +1100
commit628700316d10ed76ebe3e4be02eb55a765d675b8 (patch)
treef81fca31a1d41928cad866d6b5682b630a3da6d9 /hw
parentaecfaf0146ccfb2a4d31fa812d224f8317225e8b (diff)
downloadskiboot-628700316d10ed76ebe3e4be02eb55a765d675b8.zip
skiboot-628700316d10ed76ebe3e4be02eb55a765d675b8.tar.gz
skiboot-628700316d10ed76ebe3e4be02eb55a765d675b8.tar.bz2
xive: Remove unused field and clarify comment
This will be reworked when we support EQ and VP allocation, for now remove the unused field Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/xive.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/xive.c b/hw/xive.c
index 80a95c2..37c367e 100644
--- a/hw/xive.c
+++ b/hw/xive.c
@@ -294,13 +294,10 @@ struct xive {
#ifdef USE_INDIRECT
/* Indirect END/EQ table. NULL entries are unallocated, count is
- * the numbre of pointers (ie, sub page placeholders). base_count
- * is the number of sub-pages that have been pre-allocated (and
- * thus whose memory is owned by OPAL).
+ * the numbre of pointers (ie, sub page placeholders).
*/
uint64_t *eq_ind_base;
uint32_t eq_ind_count;
- uint32_t eq_alloc_count;
#else
void *eq_base;
#endif