@@ -335,7 +335,7 @@ static void rbtx4939_flash_copy_from(str
/* BOOT Mode: USER ROM1 / USER ROM2 */
shift = bdipsw & 3;
while (len) {
- curlen = min((unsigned long)len,
+ curlen = min_t(unsigned long, len,
0x400000 - (from & (0x400000 - 1)));
memcpy(to,
(void *)((from & ~0xc00000) |
@@ -351,7 +351,7 @@ static void rbtx4939_flash_copy_from(str
if (bdipsw == 0) {
/* BOOT Mode: Monitor ROM */
while (len) {
- curlen = min((unsigned long)len,
+ curlen = min_t(unsigned long, len,
0x400000 - (from & (0x400000 - 1)));
memcpy(to, (void *)(from ^ 0x400000), curlen);
len -= curlen;