diff options
author | Philip Balister <philip@balister.org> | 2008-02-15 13:27:34 +0000 |
---|---|---|
committer | Philip Balister <philip@balister.org> | 2008-02-15 13:27:34 +0000 |
commit | 7192c8cda818dee66ccd54fa42b909a3b740f05c (patch) | |
tree | 1c86d1f26ae4412c093ad5befa636b99bbfc3286 /packages/linux/gumstix-kernel-2.6.21/bugfix-mmc-clock.patch | |
parent | 9eff3cb5ad3afdcb429a2302e0ec303b07cb5604 (diff) |
gumstix-kernel : Add files to build a kernel for gumstix machines. These are
copied verbatim from the gumstix OE based build system.
Diffstat (limited to 'packages/linux/gumstix-kernel-2.6.21/bugfix-mmc-clock.patch')
-rw-r--r-- | packages/linux/gumstix-kernel-2.6.21/bugfix-mmc-clock.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/linux/gumstix-kernel-2.6.21/bugfix-mmc-clock.patch b/packages/linux/gumstix-kernel-2.6.21/bugfix-mmc-clock.patch new file mode 100644 index 0000000000..cac8d735cf --- /dev/null +++ b/packages/linux/gumstix-kernel-2.6.21/bugfix-mmc-clock.patch @@ -0,0 +1,14 @@ +Index: linux-2.6.21gum/drivers/mmc/pxamci.c +=================================================================== +--- linux-2.6.21gum.orig/drivers/mmc/pxamci.c ++++ linux-2.6.21gum/drivers/mmc/pxamci.c +@@ -366,8 +366,7 @@ static void pxamci_set_ios(struct mmc_ho + + if (ios->clock) { + unsigned int clk = CLOCKRATE / ios->clock; +- if (CLOCKRATE / clk > ios->clock) +- clk <<= 1; ++ if(clk > (1<<6)) clk = (1<<6); + host->clkrt = fls(clk) - 1; + pxa_set_cken(CKEN12_MMC, 1); + |