diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-12-18 21:26:33 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-12-20 17:48:00 +0000 |
commit | 361a935332489c635192b39204c7ec7af1667c8f (patch) | |
tree | d9e7589a4c475ba8c991c873c5600d6631f4d62d /src/drivers/spi/spi-generic.c | |
parent | f97c1c9d86ff56ba9d1de4fc7c9499742224d365 (diff) | |
download | coreboot-361a935332489c635192b39204c7ec7af1667c8f.tar.xz |
{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>
Diffstat (limited to 'src/drivers/spi/spi-generic.c')
-rw-r--r-- | src/drivers/spi/spi-generic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/spi/spi-generic.c b/src/drivers/spi/spi-generic.c index 05bfb82bf8..bc4fb086cd 100644 --- a/src/drivers/spi/spi-generic.c +++ b/src/drivers/spi/spi-generic.c @@ -13,9 +13,9 @@ */ #include <assert.h> +#include <commonlib/helpers.h> #include <spi-generic.h> #include <stddef.h> -#include <stdlib.h> #include <string.h> int spi_claim_bus(const struct spi_slave *slave) @@ -113,7 +113,7 @@ unsigned int spi_crop_chunk(const struct spi_slave *slave, unsigned int cmd_len, if (deduct_cmd_len && (ctrlr_max > cmd_len)) ctrlr_max -= cmd_len; - return min(ctrlr_max, buf_len); + return MIN(ctrlr_max, buf_len); } void __weak spi_init(void) |