lantiq: add wifi eep to a803 dts file
[openwrt/openwrt.git] / target / linux / lantiq / patches-3.8 / 0002-SPI-MIPS-lantiq-make-use-of-spi_finalize_current_mes.patch
1 From 8b921ffd449431543832b0e76389eb289cc78bb8 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Tue, 29 Jan 2013 21:24:17 +0100
4 Subject: [PATCH 02/40] SPI: MIPS: lantiq: make use of
5 spi_finalize_current_message
6
7 Rather than calling m->complete() directly we choose the sane way and call
8 spi_finalize_current_message instead.
9
10 Signed-off-by: Thomas Langer <thomas.langer@lantiq.com>
11 Signed-off-by: John Crispin <blogic@openwrt.org>
12 ---
13 drivers/spi/spi-falcon.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 --- a/drivers/spi/spi-falcon.c
17 +++ b/drivers/spi/spi-falcon.c
18 @@ -398,7 +398,7 @@ static int falcon_sflash_xfer_one(struct
19 }
20
21 m->status = ret;
22 - m->complete(m->context);
23 + spi_finalize_current_message(master);
24
25 return 0;
26 }