From: Tom Rix <Tom.Rix@windriver.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] ARM:PXA Use new definitions in mmc.h
Date: Thu, 19 Feb 2009 19:53:30 -0600 [thread overview]
Message-ID: <1235094810-12920-1-git-send-email-Tom.Rix@windriver.com> (raw)
In old code or current u-boot-arm MMC_CMD_WRITE_BLOCK == 24.
In new mmc.h 24 is MMC_CMD_WRITE_SINGLE_BLOCK
Change mmc_read to conform to mmc.h declaration.
Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
---
cpu/pxa/mmc.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/cpu/pxa/mmc.c b/cpu/pxa/mmc.c
index 8f5277e..f92c089 100644
--- a/cpu/pxa/mmc.c
+++ b/cpu/pxa/mmc.c
@@ -181,7 +181,7 @@ mmc_block_write(ulong dst, uchar * src, int len)
MMC_STRPCL = MMC_STRPCL_STOP_CLK;
MMC_NOB = 1;
MMC_BLKLEN = len;
- mmc_cmd(MMC_CMD_WRITE_BLOCK, argh, argl,
+ mmc_cmd(MMC_CMD_WRITE_SINGLE_BLOCK, argh, argl,
MMC_CMDAT_R1 | MMC_CMDAT_WRITE | MMC_CMDAT_BLOCK |
MMC_CMDAT_DATA_EN);
@@ -218,7 +218,7 @@ mmc_block_write(ulong dst, uchar * src, int len)
int
/****************************************************/
-mmc_read(ulong src, uchar * dst, int size)
+mmc_read(struct mmc *mmc, u64 src, uchar * dst, int size)
/****************************************************/
{
ulong end, part_start, part_end, part_len, aligned_start, aligned_end;
@@ -383,7 +383,7 @@ mmc_bread(int dev_num, ulong blknr, lbaint_t blkcnt, void *dst)
int mmc_block_size = MMC_BLOCK_SIZE;
ulong src = blknr * mmc_block_size + CONFIG_SYS_MMC_BASE;
- mmc_read(src, (uchar *) dst, blkcnt * mmc_block_size);
+ mmc_read(NULL, src, (uchar *) dst, blkcnt * mmc_block_size);
return blkcnt;
}
--
1.6.0.5
next reply other threads:[~2009-02-20 1:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-20 1:53 Tom Rix [this message]
2009-02-20 2:22 ` [U-Boot] [PATCH] ARM:PXA Use new definitions in mmc.h Jean-Christophe PLAGNIOL-VILLARD
2009-02-20 2:45 ` Tom
2009-02-20 2:53 ` Jean-Christophe PLAGNIOL-VILLARD
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=1235094810-12920-1-git-send-email-Tom.Rix@windriver.com \
--to=tom.rix@windriver.com \
--cc=u-boot@lists.denx.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.