diff options
author | Winkler, Tomas <tomas.winkler@intel.com> | 2017-04-02 23:56:03 +0300 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2017-04-24 21:42:19 +0200 |
commit | 06c9ccb78e68e2e9b69e736fc0a39fb13be49b74 (patch) | |
tree | 11c6f82e92001c969de874e0259085b8add92160 /drivers/mmc/core/sd.c | |
parent | 861183f115cd80db7efebf5516f4e7a424c13abd (diff) | |
download | linux-06c9ccb78e68e2e9b69e736fc0a39fb13be49b74.tar.gz linux-06c9ccb78e68e2e9b69e736fc0a39fb13be49b74.tar.bz2 linux-06c9ccb78e68e2e9b69e736fc0a39fb13be49b74.zip |
mmc: core: add proper be32 annotation
Annotate big endian values correctly and make sparse happy.
In mmc_app_send_scr remove scr function parameter as it was
updating card->raw_scr anyway.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/core/sd.c')
-rw-r--r-- | drivers/mmc/core/sd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c index 89531b48ae84..d109634fbfce 100644 --- a/drivers/mmc/core/sd.c +++ b/drivers/mmc/core/sd.c @@ -225,7 +225,7 @@ static int mmc_decode_scr(struct mmc_card *card) static int mmc_read_ssr(struct mmc_card *card) { unsigned int au, es, et, eo; - u32 *raw_ssr; + __be32 *raw_ssr; int i; if (!(card->csd.cmdclass & CCC_APP_SPEC)) { @@ -853,7 +853,7 @@ int mmc_sd_setup_card(struct mmc_host *host, struct mmc_card *card, /* * Fetch SCR from card. */ - err = mmc_app_send_scr(card, card->raw_scr); + err = mmc_app_send_scr(card); if (err) return err; |