From: Florian Fainelli Date: Wed, 27 Jun 2012 22:14:50 +0000 (+0000) Subject: [brcm63xx] fix SPI clock frequency selection X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=d07680275201b8f0028f9d8d9193ffcc278a2cb9;p=15.05%2Fopenwrt.git [brcm63xx] fix SPI clock frequency selection git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32512 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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 + + /* 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; + }