mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
linux/kernel.h: sync min, max, min3, max3 macros with Linux
U-Boot has never cared about the type when we get max/min of two values, but Linux Kernel does. This commit gets min, max, min3, max3 macros synced with the kernel introducing type checks. Many of references of those macros must be fixed to suppress warnings. We have two options: - Use min, max, min3, max3 only when the arguments have the same type (or add casts to the arguments) - Use min_t/max_t instead with the appropriate type for the first argument Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Pavel Machek <pavel@denx.de> Acked-by: Lukasz Majewski <l.majewski@samsung.com> Tested-by: Lukasz Majewski <l.majewski@samsung.com> [trini: Fixup arch/blackfin/lib/string.c] Signed-off-by: Tom Rini <trini@ti.com>
This commit is contained in:

committed by
Tom Rini

parent
111396ccb9
commit
b41411954d
@ -73,6 +73,7 @@ int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len, char *buf)
|
||||
debug(" <" LBAFU ", %d, %d>\n", sector, byte_offset, byte_len);
|
||||
|
||||
if (byte_offset != 0) {
|
||||
int readlen;
|
||||
/* read first part which isn't aligned with start of sector */
|
||||
if (ext4fs_block_dev_desc->
|
||||
block_read(ext4fs_block_dev_desc->dev,
|
||||
@ -81,13 +82,11 @@ int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len, char *buf)
|
||||
printf(" ** ext2fs_devread() read error **\n");
|
||||
return 0;
|
||||
}
|
||||
memcpy(buf, sec_buf + byte_offset,
|
||||
min(ext4fs_block_dev_desc->blksz
|
||||
- byte_offset, byte_len));
|
||||
buf += min(ext4fs_block_dev_desc->blksz
|
||||
- byte_offset, byte_len);
|
||||
byte_len -= min(ext4fs_block_dev_desc->blksz
|
||||
- byte_offset, byte_len);
|
||||
readlen = min((int)ext4fs_block_dev_desc->blksz - byte_offset,
|
||||
byte_len);
|
||||
memcpy(buf, sec_buf + byte_offset, readlen);
|
||||
buf += readlen;
|
||||
byte_len -= readlen;
|
||||
sector++;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user