Xixi Chen has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/62850 )
Change subject: libpayload: Add struct name "channel" for external access ......................................................................
libpayload: Add struct name "channel" for external access
struct mem_chip_info { ... struct { ... } channel[0]; };
BUG=b:182963902,b:177917361 TEST=Build pass on Kingler
Signed-off-by: Xi Chen xixi.chen@mediatek.corp-partner.google.com Change-Id: I8dcd3b52f33f80afb7885ffdcad826d86b54b543 --- M src/commonlib/bsd/include/commonlib/bsd/mem_chip_info.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/50/62850/1
diff --git a/src/commonlib/bsd/include/commonlib/bsd/mem_chip_info.h b/src/commonlib/bsd/include/commonlib/bsd/mem_chip_info.h index 7194f70..eac3681 100644 --- a/src/commonlib/bsd/include/commonlib/bsd/mem_chip_info.h +++ b/src/commonlib/bsd/include/commonlib/bsd/mem_chip_info.h @@ -15,7 +15,7 @@ uint8_t type; /* enum mem_chip_type */ uint8_t num_channels; uint8_t reserved[6]; - struct { + struct channel { uint64_t density; uint8_t io_width; uint8_t manufacturer_id;