spi: spidev: remove debug messages that access spidev->spi without locking
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 6 Jan 2023 10:07:19 +0000 (11:07 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 1 Feb 2023 07:27:18 +0000 (08:27 +0100)
commit9300c65207f384022faa50f2624820c6de8997ce
treec9341edf746f7ed82c7c6cabc43fe10e3001c9bd
parent48ff5d3812987b01e34d62236f19c374cd25bad5
spi: spidev: remove debug messages that access spidev->spi without locking

[ Upstream commit 6b35b173dbc1711f8d272e3f322d2ad697015919 ]

The two debug messages in spidev_open() dereference spidev->spi without
taking the lock and without checking if it's not null. This can lead to
a crash. Drop the messages as they're not needed - the user-space will
get informed about ENOMEM with the syscall return value.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Link: https://lore.kernel.org/r/20230106100719.196243-2-brgl@bgdev.pl
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/spi/spidev.c