[Skiboot] [PATCH v3 1/6] hdata: Reduce reserved space in spira structure
Vasant Hegde
hegdevasant at linux.vnet.ibm.com
Thu Mar 10 01:27:43 AEDT 2016
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 at linux.vnet.ibm.com>
---
hdata/spira.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
--
2.5.0
More information about the Skiboot
mailing list