diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2012-03-13 17:19:05 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-03-15 03:31:38 -0600 |
commit | 1afb708b7179d044bcb5d2334b3dc43b375ad728 (patch) | |
tree | 49b887eba3456a339df3470cc5327396f026d978 /drivers/spi/spi-s3c64xx.c | |
parent | a66590de86483eeefc3074ab1ba1a7f45a89308e (diff) | |
download | linux-1afb708b7179d044bcb5d2334b3dc43b375ad728.tar.gz linux-1afb708b7179d044bcb5d2334b3dc43b375ad728.tar.bz2 linux-1afb708b7179d044bcb5d2334b3dc43b375ad728.zip |
spi: s3c64xx: remove unnecessary callback msg->complete
msg->complete will be called in spi_finalize_current_message().
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/spi-s3c64xx.c')
-rw-r--r-- | drivers/spi/spi-s3c64xx.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index c40d1184a99d..c5e5aab98f28 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c @@ -764,9 +764,6 @@ out: msg->status = status; - if (msg->complete) - msg->complete(msg->context); - spi_finalize_current_message(master); return 0; |