diff mbox

[15/16] xive: Remove unused field and clarify comment

Message ID 1478763292-23238-15-git-send-email-benh@kernel.crashing.org
State Superseded
Headers show

Commit Message

Benjamin Herrenschmidt Nov. 10, 2016, 7:34 a.m. UTC
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>
---
 hw/xive.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
diff mbox

Patch

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