MCPcopy Create free account
hub / github.com/coreboot/coreboot / dump_jid

Function dump_jid

util/ifdtool/ifdtool.c:929–937  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

927}
928
929static void dump_jid(uint32_t jid)
930{
931 printf(" SPI Component Vendor ID: 0x%02x\n",
932 jid & 0xff);
933 printf(" SPI Component Device ID 0: 0x%02x\n",
934 (jid >> 8) & 0xff);
935 printf(" SPI Component Device ID 1: 0x%02x\n",
936 (jid >> 16) & 0xff);
937}
938
939static void dump_vscc(uint32_t vscc)
940{

Callers 1

dump_vtbaFunction · 0.85

Calls 1

printfFunction · 0.85

Tested by

no test coverage detected