1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-19 01:09:20 +03:00
openwrt-xburst/target/linux/at91/image/u-boot/patches/200-clock.patch
claudio 8d879e2449 [at91] Add support for u-boot
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22351 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-07-22 11:32:38 +00:00

25 lines
697 B
Diff

The function get_mci_clk_rate is used inside atmel_mci driver
but never defined. Fix this typo.
Signed-off-by: Claudio Mignanti <c.mignanti@gmail.com>
---
drivers/mmc/atmel_mci.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mmc/atmel_mci.c b/drivers/mmc/atmel_mci.c
index 3946ffe..628aac9 100644
--- a/drivers/mmc/atmel_mci.c
+++ b/drivers/mmc/atmel_mci.c
@@ -67,7 +67,7 @@ static void mci_set_mode(unsigned long hz, unsigned long blklen)
unsigned long bus_hz;
unsigned long clkdiv;
- bus_hz = get_mci_clk_rate();
+ bus_hz = get_mck_clk_rate();
clkdiv = (bus_hz / hz) / 2 - 1;
pr_debug("mmc: setting clock %lu Hz, block size %lu\n",
--
1.7.0.4