From: Tony Lindgren Date: Wed, 26 Mar 2008 20:08:45 +0000 (-0400) Subject: MMC: OMAP: Remove extra divisor increase X-Git-Tag: v2.6.26-rc1~1112^2~20 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=ec2f362a9126237e79a21d5c3cd225f5a07f8e89;p=safe%2Fjmp%2Flinux-2.6 MMC: OMAP: Remove extra divisor increase As noted by Kyungmin Park, the divisor calculation has an unnecessary increase. Signed-off-by: Tony Lindgren Signed-off-by: Carlos Eduardo Aguiar Signed-off-by: Pierre Ossman --- diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c index da70467..472e977 100644 --- a/drivers/mmc/host/omap.c +++ b/drivers/mmc/host/omap.c @@ -931,7 +931,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;