Commit e6d6cbe3 authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman

staging: most: use min_t

This patch replaces min with min_t.
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 06e7ecf2
......@@ -246,7 +246,9 @@ aim_read(struct file *filp, char __user *buf, size_t count, loff_t *offset)
return -EIO;
}
to_copy = min(count, (size_t)mbo->processed_length - channel->mbo_offs);
to_copy = min_t(size_t,
count,
mbo->processed_length - channel->mbo_offs);
not_copied = copy_to_user(buf,
mbo->virt_address + channel->mbo_offs,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment