diff options
author | John Crispin <john@openwrt.org> | 2013-03-14 18:42:29 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-03-14 18:42:29 +0000 |
commit | b98ae2b149e8eef38d3285d8e1b21af32ac1f2dc (patch) | |
tree | 942791530060eeebfd3e6cd68158c74b892ed7ec /target/linux/lantiq/patches-3.8/0002-SPI-MIPS-lantiq-make-use-of-spi_finalize_current_mes.patch | |
parent | 3ab75692f3a7490146eaec4a5a76dec327f11f97 (diff) | |
download | upstream-b98ae2b149e8eef38d3285d8e1b21af32ac1f2dc.tar.gz upstream-b98ae2b149e8eef38d3285d8e1b21af32ac1f2dc.tar.bz2 upstream-b98ae2b149e8eef38d3285d8e1b21af32ac1f2dc.zip |
bump to v3.8
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 36014
Diffstat (limited to 'target/linux/lantiq/patches-3.8/0002-SPI-MIPS-lantiq-make-use-of-spi_finalize_current_mes.patch')
-rw-r--r-- | target/linux/lantiq/patches-3.8/0002-SPI-MIPS-lantiq-make-use-of-spi_finalize_current_mes.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/target/linux/lantiq/patches-3.8/0002-SPI-MIPS-lantiq-make-use-of-spi_finalize_current_mes.patch b/target/linux/lantiq/patches-3.8/0002-SPI-MIPS-lantiq-make-use-of-spi_finalize_current_mes.patch new file mode 100644 index 0000000000..1f3e7a144f --- /dev/null +++ b/target/linux/lantiq/patches-3.8/0002-SPI-MIPS-lantiq-make-use-of-spi_finalize_current_mes.patch @@ -0,0 +1,31 @@ +From 8b921ffd449431543832b0e76389eb289cc78bb8 Mon Sep 17 00:00:00 2001 +From: John Crispin <blogic@openwrt.org> +Date: Tue, 29 Jan 2013 21:24:17 +0100 +Subject: [PATCH 02/40] SPI: MIPS: lantiq: make use of + spi_finalize_current_message + +Rather than calling m->complete() directly we choose the sane way and call +spi_finalize_current_message instead. + +Signed-off-by: Thomas Langer <thomas.langer@lantiq.com> +Signed-off-by: John Crispin <blogic@openwrt.org> +--- + drivers/spi/spi-falcon.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/drivers/spi/spi-falcon.c b/drivers/spi/spi-falcon.c +index 6a6f62e..f9c66c2 100644 +--- a/drivers/spi/spi-falcon.c ++++ b/drivers/spi/spi-falcon.c +@@ -398,7 +398,7 @@ static int falcon_sflash_xfer_one(struct spi_master *master, + } + + m->status = ret; +- m->complete(m->context); ++ spi_finalize_current_message(master); + + return 0; + } +-- +1.7.10.4 + |