[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <fb3ab1bb-4c06-1361-6675-f950216565d0@kernel.org>
Date: Fri, 3 Jun 2016 13:15:04 +0100
From: Jonathan Cameron <jic23@...nel.org>
To: "Andrew F. Davis" <afd@...com>, Hartmut Knaack <knaack.h@....de>,
Lars-Peter Clausen <lars@...afoo.de>,
Peter Meerwald-Stadler <pmeerw@...erw.net>,
Dmitry Torokhov <dmitry.torokhov@...il.com>,
Lee Jones <lee.jones@...aro.org>,
Dave Gerlach <d-gerlach@...com>
Cc: linux-iio@...r.kernel.org, linux-input@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 7/8] iio: adc: ti_am335x_adc: use variable names for
sizeof() operator
On 31/05/16 18:00, Andrew F. Davis wrote:
> Fix the code formatting to use the kernel preferred style
> of using the actual variables to determize the size using
> the sizeof() operator.
>
> Signed-off-by: Andrew F. Davis <afd@...com>
Applied - thanks,
Jonathan
> ---
> drivers/iio/adc/ti_am335x_adc.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/iio/adc/ti_am335x_adc.c b/drivers/iio/adc/ti_am335x_adc.c
> index 18af71d..8a36875 100644
> --- a/drivers/iio/adc/ti_am335x_adc.c
> +++ b/drivers/iio/adc/ti_am335x_adc.c
> @@ -326,8 +326,7 @@ static int tiadc_channel_init(struct iio_dev *indio_dev, int channels)
> int i;
>
> indio_dev->num_channels = channels;
> - chan_array = kcalloc(channels,
> - sizeof(struct iio_chan_spec), GFP_KERNEL);
> + chan_array = kcalloc(channels, sizeof(*chan_array), GFP_KERNEL);
> if (chan_array == NULL)
> return -ENOMEM;
>
> @@ -467,8 +466,7 @@ static int tiadc_probe(struct platform_device *pdev)
> return -EINVAL;
> }
>
> - indio_dev = devm_iio_device_alloc(&pdev->dev,
> - sizeof(struct tiadc_device));
> + indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*indio_dev));
> if (indio_dev == NULL) {
> dev_err(&pdev->dev, "failed to allocate iio device\n");
> return -ENOMEM;
>
Powered by blists - more mailing lists