summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2012-06-27 22:14:50 +0000
committerFlorian Fainelli <florian@openwrt.org>2012-06-27 22:14:50 +0000
commit1d7878a38b14990ff62f4712389824e06b67a011 (patch)
treebe1169edeeb8e58646715b1f5c1f45dd084ec27d /target
parent0615bde13a2a90b7d00b490998eb798e6591d45f (diff)
downloadmaster-31e0f0ae-1d7878a38b14990ff62f4712389824e06b67a011.tar.gz
master-31e0f0ae-1d7878a38b14990ff62f4712389824e06b67a011.tar.bz2
master-31e0f0ae-1d7878a38b14990ff62f4712389824e06b67a011.zip
fix SPI clock frequency selection
SVN-Revision: 32512
Diffstat (limited to 'target')
-rw-r--r--target/linux/brcm63xx/patches-3.3/011-spi-add-Broadcom-BCM63xx-SPI-controller-driver.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/patches-3.3/011-spi-add-Broadcom-BCM63xx-SPI-controller-driver.patch b/target/linux/brcm63xx/patches-3.3/011-spi-add-Broadcom-BCM63xx-SPI-controller-driver.patch
index 24f63de62f..e4939599a8 100644
--- a/target/linux/brcm63xx/patches-3.3/011-spi-add-Broadcom-BCM63xx-SPI-controller-driver.patch
+++ b/target/linux/brcm63xx/patches-3.3/011-spi-add-Broadcom-BCM63xx-SPI-controller-driver.patch
@@ -167,7 +167,7 @@ Acked-by: Grant Likely <grant.likely@secretlab.ca>
+
+ /* Find the closest clock configuration */
+ for (i = 0; i < SPI_CLK_MASK; i++) {
-+ if (hz <= bcm63xx_spi_freq_table[i][0]) {
++ if (hz >= bcm63xx_spi_freq_table[i][0]) {
+ clk_cfg = bcm63xx_spi_freq_table[i][1];
+ break;
+ }