diff options
| author | Tomas Winkler <tomas.winkler@intel.com> | 2008-07-09 20:01:56 -0400 |
|---|---|---|
| committer | Pierre Ossman <drzeus@drzeus.cx> | 2008-07-15 09:47:03 -0400 |
| commit | ea901300cd8b809285fa5cbced18124f127e0ac6 (patch) | |
| tree | 20b080416a73c40fa28e83f9dbcb8b4d9c497061 /drivers | |
| parent | 62a7573ee9f31d4fdb330b3e68ebf6efaba1d57c (diff) | |
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>
Diffstat (limited to 'drivers')
| -rwxr-xr-x | drivers/mmc/core/sdio_io.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/mmc/core/sdio_io.c b/drivers/mmc/core/sdio_io.c index 0888df64581f..f61fc2d4cd0a 100755 --- a/drivers/mmc/core/sdio_io.c +++ b/drivers/mmc/core/sdio_io.c | |||
| @@ -187,11 +187,10 @@ EXPORT_SYMBOL_GPL(sdio_set_block_size); | |||
| 187 | */ | 187 | */ |
| 188 | static inline unsigned int sdio_max_byte_size(struct sdio_func *func) | 188 | static inline unsigned int sdio_max_byte_size(struct sdio_func *func) |
| 189 | { | 189 | { |
| 190 | return min(min(min( | 190 | unsigned mval = min(func->card->host->max_seg_size, |
| 191 | func->card->host->max_seg_size, | 191 | func->card->host->max_blk_size); |
| 192 | func->card->host->max_blk_size), | 192 | mval = min(mval, func->max_blksize); |
| 193 | func->max_blksize), | 193 | return min(mval, 512u); /* maximum size for byte mode */ |
| 194 | 512u); /* maximum size for byte mode */ | ||
| 195 | } | 194 | } |
| 196 | 195 | ||
| 197 | /** | 196 | /** |
