forked from luck/tmp_suning_uos_patched
sdio: sdio_io.c Fix sparse warnings
Unfold nested macros it creates not readable code and sparse warnings sdio_io.c:190:9: warning: symbol '_min1' shadows an earlier one Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
This commit is contained in:
parent
62a7573ee9
commit
ea901300cd
|
@ -187,11 +187,10 @@ EXPORT_SYMBOL_GPL(sdio_set_block_size);
|
||||||
*/
|
*/
|
||||||
static inline unsigned int sdio_max_byte_size(struct sdio_func *func)
|
static inline unsigned int sdio_max_byte_size(struct sdio_func *func)
|
||||||
{
|
{
|
||||||
return min(min(min(
|
unsigned mval = min(func->card->host->max_seg_size,
|
||||||
func->card->host->max_seg_size,
|
func->card->host->max_blk_size);
|
||||||
func->card->host->max_blk_size),
|
mval = min(mval, func->max_blksize);
|
||||||
func->max_blksize),
|
return min(mval, 512u); /* maximum size for byte mode */
|
||||||
512u); /* maximum size for byte mode */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user