From: Michael Trimarchi <michael@amarulasolutions.com>
To: linux-mmc@vger.kernel.org
Cc: Chris Ball <cjb@laptop.org>,
linux-kernel@vger.kernel.org, Sekhar Nori <nsekhar@ti.com>,
Manjunathappa Prakash <prakash.pm@ti.com>
Subject: [RFC PATCH 2/3] ARM: mmc: davinci: Remove cast to the same type
Date: Wed, 22 Jan 2014 12:46:04 +0100 [thread overview]
Message-ID: <1390391165-27906-3-git-send-email-michael@amarulasolutions.com> (raw)
In-Reply-To: <1390391165-27906-1-git-send-email-michael@amarulasolutions.com>
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
---
drivers/mmc/host/davinci_mmc.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c
index 8ea09ef..13ac664 100644
--- a/drivers/mmc/host/davinci_mmc.c
+++ b/drivers/mmc/host/davinci_mmc.c
@@ -212,7 +212,7 @@ struct mmc_davinci_host {
bool active_request;
/* For PIO we walk scatterlists one segment at a time. */
- unsigned int sg_len;
+ unsigned int sg_len;
struct scatterlist *sg;
/* Version of the MMC/SD controller */
@@ -660,13 +660,11 @@ static unsigned int calculate_freq_for_card(struct mmc_davinci_host *host,
mmc_pclk = host->mmc_input_clk;
if (mmc_req_freq && mmc_pclk > (2 * mmc_req_freq))
- mmc_push_pull_divisor = ((unsigned int)mmc_pclk
- / (2 * mmc_req_freq)) - 1;
+ mmc_push_pull_divisor = (mmc_pclk / (2 * mmc_req_freq)) - 1;
else
mmc_push_pull_divisor = 0;
- mmc_freq = (unsigned int)mmc_pclk
- / (2 * (mmc_push_pull_divisor + 1));
+ mmc_freq = mmc_pclk / (2 * (mmc_push_pull_divisor + 1));
if (mmc_freq > mmc_req_freq)
mmc_push_pull_divisor = mmc_push_pull_divisor + 1;
@@ -693,7 +691,7 @@ static void calculate_clk_divider(struct mmc_host *mmc, struct mmc_ios *ios)
/* Ignoring the init clock value passed for fixing the inter
* operability with different cards.
*/
- open_drain_freq = ((unsigned int)host->mmc_input_clk
+ open_drain_freq = (host->mmc_input_clk
/ (2 * MMCSD_INIT_CLOCK)) - 1;
if (open_drain_freq > 0xFF)
--
1.8.1.2
next prev parent reply other threads:[~2014-01-22 11:46 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-22 11:46 [RFC PATCH 0/3] ARM: mmc: davinci: Small fixes on host davinci driver Michael Trimarchi
2014-01-22 11:46 ` [RFC PATCH 1/3] ARM: mmc: davinci: remove unused variable mmc_pclk and fix opendrain clock calculation Michael Trimarchi
2014-01-22 11:46 ` Michael Trimarchi [this message]
2014-01-22 11:46 ` [RFC PATCH 3/3] ARM: mmc: davinci: clock rate is an unsigned long Michael Trimarchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1390391165-27906-3-git-send-email-michael@amarulasolutions.com \
--to=michael@amarulasolutions.com \
--cc=cjb@laptop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=nsekhar@ti.com \
--cc=prakash.pm@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®