mirror of
https://xff.cz/git/u-boot/
synced 2025-11-03 11:59:33 +01:00
Merge tag 'dm-pull-5dec18' of git://git.denx.de/u-boot-dm
Minor sandbox enhancements / fixes tpm improvements to clear up v1/v2 support buildman toolchain fixes New serial options to set/get config
This commit is contained in:
@@ -10,8 +10,7 @@ void udelay(unsigned long usec);
|
||||
|
||||
static inline void mdelay(unsigned long msec)
|
||||
{
|
||||
while (msec--)
|
||||
udelay(1000);
|
||||
udelay(1000 * msec);
|
||||
}
|
||||
|
||||
static inline void ndelay(unsigned long nsec)
|
||||
|
||||
@@ -33,6 +33,10 @@
|
||||
#define S64_MAX ((s64)(U64_MAX>>1))
|
||||
#define S64_MIN ((s64)(-S64_MAX - 1))
|
||||
|
||||
/* Aliases defined by stdint.h */
|
||||
#define UINT32_MAX U32_MAX
|
||||
#define UINT64_MAX U64_MAX
|
||||
|
||||
#define STACK_MAGIC 0xdeadbeef
|
||||
|
||||
#define REPEAT_BYTE(x) ((~0ul / 0xff) * (x))
|
||||
|
||||
Reference in New Issue
Block a user