staging: greybus: spilib: fix use-after-free after deregistration
authorJohan Hovold <johan@kernel.org>
Sun, 29 Oct 2017 12:01:33 +0000 (13:01 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 Nov 2017 08:23:30 +0000 (09:23 +0100)
commit6fbd42df92170ed24688ed35d95d54c4b42e0c33
tree49a664d132fb77db2b5f8b2574354633dee7222d
parentd8b5d88d219522877b0bed1b5114dddedf042d70
staging: greybus: spilib: fix use-after-free after deregistration

commit 770b03c2ca4aa44d226cf248f86aa23e546147d0 upstream.

Remove erroneous spi_master_put() after controller deregistration which
would access the already freed spi controller.

Note that spi_unregister_master() drops our only controller reference.

Fixes: ba3e67001b42 ("greybus: SPI: convert to a gpbridge driver")
Signed-off-by: Johan Hovold <johan@kernel.org>
Reviewed-by: Rui Miguel Silva <rmfrfs@gmail.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/greybus/spilib.c