diff options
| author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2020-05-06 05:52:06 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-05-27 17:37:42 +0200 |
| commit | f289ee6ebb64ef45abb845a08f7f42f3aa0c3892 (patch) | |
| tree | e5009cf9d3039a8c222b78d8010646c129249114 /drivers | |
| parent | c6d40a80584697251846b08366cecb2a9e9d032c (diff) | |
| download | linux-f289ee6ebb64ef45abb845a08f7f42f3aa0c3892.tar.gz linux-f289ee6ebb64ef45abb845a08f7f42f3aa0c3892.tar.bz2 linux-f289ee6ebb64ef45abb845a08f7f42f3aa0c3892.zip | |
iio: sca3000: Remove an erroneous 'get_device()'
commit 928edefbc18cd8433f7df235c6e09a9306e7d580 upstream.
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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/iio/accel/sca3000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/accel/sca3000.c b/drivers/iio/accel/sca3000.c index 4964561595f5..7218acf1a907 100644 --- a/drivers/iio/accel/sca3000.c +++ b/drivers/iio/accel/sca3000.c @@ -982,7 +982,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\n"); return ret; } |
