HomeSort by relevance Sort by last modified time
    Searched refs:RefId (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/OpenPlatformPkg/Applications/FirmwareUpdate/
FUpdate.c 97 UINT32 IdBuffer, Id, RefId;
107 RefId = SwapBytes32 (IdBuffer) >> 8;
109 if (RefId == 0) {
112 } else if (RefId != Id) {
113 Print (L"%s: Unsupported SPI flash detected with ID=%2x\n", CMD_NAME_STRING, RefId);
117 Print (L"%s: Detected supported SPI flash with ID=%3x\n", CMD_NAME_STRING, RefId);
  /device/linaro/bootloader/OpenPlatformPkg/Applications/SpiTool/
SpiFlashCmd.c 170 UINT32 Id, RefId;
182 RefId = (IdBuffer[0] << 16) + (IdBuffer[1] << 8) + IdBuffer[2];
184 if (RefId == Id) {
185 Print (L"sf: Detected supported SPI flash with ID=%3x\n", RefId);
193 } else if (RefId != 0) {
194 Print (L"sf: Unsupported SPI flash detected with ID=%2x\n", RefId);

Completed in 69 milliseconds