]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
Fixes for 4.9
authorSasha Levin <sashal@kernel.org>
Mon, 25 May 2020 20:56:04 +0000 (16:56 -0400)
committerSasha Levin <sashal@kernel.org>
Mon, 25 May 2020 20:56:04 +0000 (16:56 -0400)
Signed-off-by: Sasha Levin <sashal@kernel.org>
queue-4.9/iio-sca3000-remove-an-erroneous-get_device.patch [new file with mode: 0644]
queue-4.9/series

diff --git a/queue-4.9/iio-sca3000-remove-an-erroneous-get_device.patch b/queue-4.9/iio-sca3000-remove-an-erroneous-get_device.patch
new file mode 100644 (file)
index 0000000..175c388
--- /dev/null
@@ -0,0 +1,40 @@
+From b781891e8d7bf3565494916839c0bdf9d84a4d09 Mon Sep 17 00:00:00 2001
+From: Sasha Levin <sashal@kernel.org>
+Date: Wed, 6 May 2020 05:52:06 +0200
+Subject: iio: sca3000: Remove an erroneous 'get_device()'
+
+From: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
+
+[ Upstream commit 928edefbc18cd8433f7df235c6e09a9306e7d580 ]
+
+This looks really unusual to have a 'get_device()' hidden in a 'dev_err()'
+call.
+Remove it.
+
+While at it add a missing \n at the end of the message.
+
+Fixes: 574fb258d636 ("Staging: IIO: VTI sca3000 series accelerometer driver (spi)")
+Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
+Cc: <Stable@vger.kernel.org>
+Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
+Signed-off-by: Sasha Levin <sashal@kernel.org>
+---
+ drivers/staging/iio/accel/sca3000_ring.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/drivers/staging/iio/accel/sca3000_ring.c b/drivers/staging/iio/accel/sca3000_ring.c
+index d1cb9b9cf22b..391cbcc4ed77 100644
+--- a/drivers/staging/iio/accel/sca3000_ring.c
++++ b/drivers/staging/iio/accel/sca3000_ring.c
+@@ -56,7 +56,7 @@ static int sca3000_read_data(struct sca3000_state *st,
+       st->tx[0] = SCA3000_READ_REG(reg_address_high);
+       ret = spi_sync_transfer(st->us, xfer, ARRAY_SIZE(xfer));
+       if (ret) {
+-              dev_err(get_device(&st->us->dev), "problem reading register");
++              dev_err(&st->us->dev, "problem reading register");
+               goto error_free_rx;
+       }
+-- 
+2.25.1
+
index 23f39d873c7eaf7e1f9e1bd6ee153d25b721f7dc..213b022fb52d3ec2c1d991e88d5ebd33677eaf88 100644 (file)
@@ -62,3 +62,4 @@ staging-greybus-fix-uninitialized-scalar-variable.patch
 iio-dac-vf610-fix-an-error-handling-path-in-vf610_dac_probe.patch
 mei-release-me_cl-object-reference.patch
 rapidio-fix-an-error-in-get_user_pages_fast-error-handling.patch
+iio-sca3000-remove-an-erroneous-get_device.patch