diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-05-08 15:54:00 -0300 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-06-14 15:03:53 +0100 |
commit | 1ca0259b18478b2bab6d5c81ca1de52dd519ae5e (patch) | |
tree | d0d09fb55ee80002e95d786215b880c81a9a84ba /drivers/iio/light | |
parent | ae35496230bc792fa76505ab7fcee694c7f7d523 (diff) | |
download | op-kernel-dev-1ca0259b18478b2bab6d5c81ca1de52dd519ae5e.zip op-kernel-dev-1ca0259b18478b2bab6d5c81ca1de52dd519ae5e.tar.gz |
iio: light: hid-sensor-prox: Fit assignment in one line
There is no need to do the assignment to indio_dev->num_channels in two
lines code.
Put it in one line.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/light')
-rw-r--r-- | drivers/iio/light/hid-sensor-prox.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/iio/light/hid-sensor-prox.c b/drivers/iio/light/hid-sensor-prox.c index 0d24847..45ca056 100644 --- a/drivers/iio/light/hid-sensor-prox.c +++ b/drivers/iio/light/hid-sensor-prox.c @@ -284,8 +284,7 @@ static int hid_prox_probe(struct platform_device *pdev) goto error_free_dev_mem; } - indio_dev->num_channels = - ARRAY_SIZE(prox_channels); + indio_dev->num_channels = ARRAY_SIZE(prox_channels); indio_dev->dev.parent = &pdev->dev; indio_dev->info = &prox_info; indio_dev->name = name; |