diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-01-30 15:15:18 +0300 |
---|---|---|
committer | Chris Ball <chris@printf.net> | 2014-03-04 11:44:13 -0500 |
commit | b38313d627e29d7dfc4aed242fc007806a85d3f0 (patch) | |
tree | 04d65ef271374d5306697ccdda94f075d2d75ad7 /drivers/mmc | |
parent | 370aede6a18a41e01f2668108d847b598443fbc0 (diff) |
mmc: omap_hsmmc: remove a duplicative test
Static checkers complain that testing for both "next" and "!next" is
duplicative.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Balaji T K <balajitk@ti.com>
Signed-off-by: Chris Ball <chris@printf.net>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/omap_hsmmc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index dbd32ad3b74..4ff906cfd23 100644 --- a/drivers/mmc/host/omap_hsmmc.c +++ b/drivers/mmc/host/omap_hsmmc.c @@ -1236,8 +1236,7 @@ static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host, } /* Check if next job is already prepared */ - if (next || - (!next && data->host_cookie != host->next_data.cookie)) { + if (next || data->host_cookie != host->next_data.cookie) { dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len, omap_hsmmc_get_dma_dir(host, data)); |