diff options
author | Michal Simek | 2020-11-06 13:58:01 +0100 |
---|---|---|
committer | Michal Simek | 2020-11-20 10:42:54 +0100 |
commit | cd40b826554e535d56dcc09dbb97c47048bd3b32 (patch) | |
tree | 2ade4a9aa2b9912439ff83b6d544468173a011dc /board | |
parent | b8771d0b1d660dfe34d55ddf320495325315d1d9 (diff) |
fru: common: Record pcie/uuid fields in custom board area
Add additional fields. They will be just recorded and filled but not shown.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/xilinx/common/fru.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/xilinx/common/fru.h b/board/xilinx/common/fru.h index e85dde45314..e7284709dde 100644 --- a/board/xilinx/common/fru.h +++ b/board/xilinx/common/fru.h @@ -50,6 +50,10 @@ struct fru_board_data { /* Xilinx custom fields */ u8 rev_type_len; u8 rev[FRU_BOARD_MAX_LEN]; + u8 pcie_type_len; + u8 pcie[FRU_BOARD_MAX_LEN]; + u8 uuid_type_len; + u8 uuid[FRU_BOARD_MAX_LEN]; }; struct fru_table { |