projects
/
profile
/
ivi
/
kernel-adaptation-intel-automotive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
109ec8c
)
mmc: bfin_sdh: limit mmc DMA segment len to 1 for bf518.
author
Sonic Zhang
<sonic.zhang@analog.com>
Tue, 7 Aug 2012 03:10:12 +0000
(11:10 +0800)
committer
Chris Ball
<cjb@laptop.org>
Tue, 4 Sep 2012 17:58:18 +0000
(13:58 -0400)
bf518 RSI dma doesn't work in array mode.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/host/bfin_sdh.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/host/bfin_sdh.c
b/drivers/mmc/host/bfin_sdh.c
index
a17dd73
..
56a1093
100644
(file)
--- a/
drivers/mmc/host/bfin_sdh.c
+++ b/
drivers/mmc/host/bfin_sdh.c
@@
-462,7
+462,11
@@
static int __devinit sdh_probe(struct platform_device *pdev)
}
mmc->ops = &sdh_ops;
+#if defined(CONFIG_BF54x)
mmc->max_segs = 32;
+#elif defined(CONFIG_BF51x)
+ mmc->max_segs = 1;
+#endif
mmc->max_seg_size = 1 << 16;
mmc->max_blk_size = 1 << 11;
mmc->max_blk_count = 1 << 11;