{drivers,southbridge}: Replace min() with MIN()
This is to remove min/max() from <stdlib.h>. Change-Id: Ica03d9aec8a81f57709abcac655dfb0ebce3f8c6 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37818 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Patrick Georgi
parent
f97c1c9d86
commit
361a935332
@@ -14,13 +14,13 @@
|
||||
|
||||
#include <assert.h>
|
||||
#include <commonlib/endian.h>
|
||||
#include <commonlib/helpers.h>
|
||||
#include <console/console.h>
|
||||
#include <delay.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <endian.h>
|
||||
#include <lib.h>
|
||||
#include <security/tpm/tis.h>
|
||||
#include <stdlib.h>
|
||||
#include <timer.h>
|
||||
#include <types.h>
|
||||
|
||||
@@ -99,7 +99,7 @@ int tis_sendrecv(const uint8_t *sendbuf, size_t sbuf_size,
|
||||
return -1;
|
||||
|
||||
/* Determine the number of bytes remaining */
|
||||
recv_bytes = min(be32_to_cpu(*(uint32_t *)&header->length),
|
||||
recv_bytes = MIN(be32_to_cpu(*(uint32_t *)&header->length),
|
||||
max_recv_bytes);
|
||||
|
||||
/* Determine if there is additional response data */
|
||||
|
Reference in New Issue
Block a user