staging: media: omap24xx: Use min_t instead of min
authorAybuke Ozdemir <aybuke.147@gmail.com>
Mon, 20 Oct 2014 22:39:34 +0000 (01:39 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Oct 2014 06:10:49 +0000 (14:10 +0800)
commit1002a240ed72f0535f01ca88e0341ccf7c4e0b54
treef01355aff533ec35f3b3233292b7f93aeff3bb51
parent8d02c02253457a1facf077d8d67aa350ac317878
staging: media: omap24xx: Use min_t instead of min

This patch focuses on fixing the following warning generated by
checkpatch.pl for the file tcm825x.c:

WARNÄ°NG: min() should probably be min_t(u32, tgt_xclk, TCM825X_XCLK_MAX)

The changes were applied using the following coccinelle rule:
@@
expression e1, e2;
typedef u32;
@@

-tgt_xclk = min(e1, (u32)e2);
+tgt_xclk = min_t(u32, e1, e2);

Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/omap24xx/tcm825x.c