From: Tony Lindgren Date: Fri, 10 Aug 2007 07:46:34 +0000 (-0700) Subject: MMC: Remove extra diviso increase X-Git-Tag: v2.6.23-omap1~279 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=13ee710f84f90b693ee00d3da0eff354b2853f8d;p=linux-2.6-omap-h63xx.git MMC: Remove extra diviso increase As noted by Kyungmin Park, the divisor calculation has an unnecessary increase. Signed-off-by: Tony Lindgren --- diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c index 816abf410c4..0b59e9e86e3 100644 --- a/drivers/mmc/host/omap.c +++ b/drivers/mmc/host/omap.c @@ -935,7 +935,6 @@ static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios) if (dsor > 250) dsor = 250; - dsor++; if (ios->bus_width == MMC_BUS_WIDTH_4) dsor |= 1 << 15;