mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
spi: spi-sn-f-ospi: Use min_t instead of opencoding it
Use `min_t` instead of `min` with casting the individual arguments. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Link: https://lore.kernel.org/r/20230528195830.164669-2-lars@metafoo.de Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
5363073dfc
commit
282152fa9d
@ -566,7 +566,7 @@ static bool f_ospi_supports_op(struct spi_mem *mem,
|
||||
|
||||
static int f_ospi_adjust_op_size(struct spi_mem *mem, struct spi_mem_op *op)
|
||||
{
|
||||
op->data.nbytes = min((int)op->data.nbytes, (int)(OSPI_DAT_SIZE_MAX));
|
||||
op->data.nbytes = min_t(int, op->data.nbytes, OSPI_DAT_SIZE_MAX);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user