upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
430 B
25 lines
430 B
/*
|
|
* efi_selftest_util
|
|
*
|
|
* Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*
|
|
* Utility functions
|
|
*/
|
|
|
|
#include <efi_selftest.h>
|
|
|
|
int efi_st_memcmp(const void *buf1, const void *buf2, size_t length)
|
|
{
|
|
const u8 *pos1 = buf1;
|
|
const u8 *pos2 = buf2;
|
|
|
|
for (; length; --length) {
|
|
if (*pos1 != *pos2)
|
|
return *pos1 - *pos2;
|
|
++pos1;
|
|
++pos2;
|
|
}
|
|
return EFI_ST_SUCCESS;
|
|
}
|
|
|