Andy Shevchenko 22b74406c5 dmaengine: idma64: useless use of min_t()
We use a pattern

	x = min_t(u32, <LOG2_CONSTANT>, __ffs(expr));

There is no need to use min_t() since we can replace it by

	x = __ffs(expr | <2^LOG2_CONST>);

and moreover guarantee that argument of __ffs() will be not zero.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
2015-09-25 07:54:05 +05:30
..
2015-09-04 11:10:18 -07:00
2015-08-26 07:50:17 +05:30
2015-09-04 11:10:18 -07:00
2015-09-04 11:10:18 -07:00
2015-09-04 11:10:18 -07:00
2015-09-04 11:10:18 -07:00
2015-09-04 11:10:18 -07:00
2015-09-04 11:10:18 -07:00