From 13ee710f84f90b693ee00d3da0eff354b2853f8d Mon Sep 17 00:00:00 2001 From: Tony Lindgren Date: Fri, 10 Aug 2007 00:46:34 -0700 Subject: [PATCH] MMC: Remove extra diviso increase As noted by Kyungmin Park, the divisor calculation has an unnecessary increase. Signed-off-by: Tony Lindgren --- drivers/mmc/host/omap.c | 1 - 1 file changed, 1 deletion(-) 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; -- 2.41.1