mirror of
https://github.com/torvalds/linux.git
synced 2024-11-04 11:04:38 +00:00
iio: adis16400: Remove unused variable
'rx' is not used in this function. Remove it. Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com> Acked-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
14b596c9d8
commit
a9fbbbd7d2
@ -18,7 +18,7 @@ int adis16400_update_scan_mode(struct iio_dev *indio_dev,
|
||||
{
|
||||
struct adis16400_state *st = iio_priv(indio_dev);
|
||||
struct adis *adis = &st->adis;
|
||||
uint16_t *tx, *rx;
|
||||
uint16_t *tx;
|
||||
|
||||
if (st->variant->flags & ADIS16400_NO_BURST)
|
||||
return adis_update_scan_mode(indio_dev, scan_mask);
|
||||
@ -35,7 +35,6 @@ int adis16400_update_scan_mode(struct iio_dev *indio_dev,
|
||||
if (!adis->buffer)
|
||||
return -ENOMEM;
|
||||
|
||||
rx = adis->buffer;
|
||||
tx = adis->buffer + indio_dev->scan_bytes;
|
||||
|
||||
tx[0] = ADIS_READ_REG(ADIS16400_GLOB_CMD);
|
||||
|
Loading…
Reference in New Issue
Block a user