From: Michal Simek Date: Fri, 6 Nov 2020 12:58:01 +0000 (+0100) Subject: fru: common: Record pcie/uuid fields in custom board area X-Git-Tag: v2021.10~425^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd40b826554e535d56dcc09dbb97c47048bd3b32;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/board/xilinx/common/fru.h b/board/xilinx/common/fru.h index e85dde4..e728470 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 {