diff mbox

[v3,1/6] hdata: Reduce reserved space in spira structure

Message ID 1457533668-10655-2-git-send-email-hegdevasant@linux.vnet.ibm.com
State Superseded
Headers show

Commit Message

Vasant Hegde March 9, 2016, 2:27 p.m. UTC
As per spec we reserve 0x4c0 in spira structure for future use. But
spira is being deprecated and we will be using new SPIRAH/SPIRAS
strcture. Hence reduce reserved space in spira to 0xc0 so that we
can use remaining 1K space for new SPIRAH structure.

Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
---
 hdata/spira.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/hdata/spira.h b/hdata/spira.h
index 064aa86..1047a0d 100644
--- a/hdata/spira.h
+++ b/hdata/spira.h
@@ -75,7 +75,7 @@  struct spira {
 	struct HDIF_idata_ptr	ntuples_ptr;
 	__be64			pad;
 	struct spira_ntuples	ntuples;
-	u8			reserved[0x4c0];
+	u8			reserved[0xc0];
 } __packed __align(0x100);
 
 extern struct spira spira;