diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-09-06 19:01:17 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-09-06 19:01:17 +0000 |
commit | f8cd14921d9ae957a092378317bc11ededdeb0ef (patch) | |
tree | ddabb353f50dd7bfff81bb4b52bbbb9faaf86896 /target/linux/brcm63xx/patches-3.9/013-spi-bcm63xx-inline-hz-usage-in-bcm63xx_spi_setup_tra.patch | |
parent | dc028776f0812f629546ef8081e2e30d9918ea36 (diff) | |
download | upstream-f8cd14921d9ae957a092378317bc11ededdeb0ef.tar.gz upstream-f8cd14921d9ae957a092378317bc11ededdeb0ef.tar.bz2 upstream-f8cd14921d9ae957a092378317bc11ededdeb0ef.zip |
brcm63xx: drop linux 3.9 support
It is EOL since quite a while, so no need to keep it around.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 37911
Diffstat (limited to 'target/linux/brcm63xx/patches-3.9/013-spi-bcm63xx-inline-hz-usage-in-bcm63xx_spi_setup_tra.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-3.9/013-spi-bcm63xx-inline-hz-usage-in-bcm63xx_spi_setup_tra.patch | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/target/linux/brcm63xx/patches-3.9/013-spi-bcm63xx-inline-hz-usage-in-bcm63xx_spi_setup_tra.patch b/target/linux/brcm63xx/patches-3.9/013-spi-bcm63xx-inline-hz-usage-in-bcm63xx_spi_setup_tra.patch deleted file mode 100644 index fba37d57ad..0000000000 --- a/target/linux/brcm63xx/patches-3.9/013-spi-bcm63xx-inline-hz-usage-in-bcm63xx_spi_setup_tra.patch +++ /dev/null @@ -1,43 +0,0 @@ -From 2646be877afc663d1688a2add8386b027c9d7e31 Mon Sep 17 00:00:00 2001 -From: Jonas Gorski <jogo@openwrt.org> -Date: Mon, 11 Mar 2013 14:08:06 +0100 -Subject: [PATCH 11/12] spi/bcm63xx: inline hz usage in - bcm63xx_spi_setup_transfer - -bcm63xx_spi_setup_transfer is called from only one place, and that has -t always set, to hz will always be t->speed_hz - just use it directly in -the two places instead of moving it in a local variable. - -Signed-off-by: Jonas Gorski <jogo@openwrt.org> ---- - drivers/spi/spi-bcm63xx.c | 7 ++----- - 1 file changed, 2 insertions(+), 5 deletions(-) - ---- a/drivers/spi/spi-bcm63xx.c -+++ b/drivers/spi/spi-bcm63xx.c -@@ -97,15 +97,12 @@ static void bcm63xx_spi_setup_transfer(s - struct spi_transfer *t) - { - struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master); -- u32 hz; - u8 clk_cfg, reg; - int i; - -- hz = (t) ? t->speed_hz : spi->max_speed_hz; -- - /* Find the closest clock configuration */ - for (i = 0; i < SPI_CLK_MASK; i++) { -- if (hz >= bcm63xx_spi_freq_table[i][0]) { -+ if (t->speed_hz >= bcm63xx_spi_freq_table[i][0]) { - clk_cfg = bcm63xx_spi_freq_table[i][1]; - break; - } -@@ -122,7 +119,7 @@ static void bcm63xx_spi_setup_transfer(s - - bcm_spi_writeb(bs, reg, SPI_CLK_CFG); - dev_dbg(&spi->dev, "Setting clock register to %02x (hz %d)\n", -- clk_cfg, hz); -+ clk_cfg, t->speed_hz); - } - - /* the spi->mode bits understood by this driver: */ |