[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <56CA2077.50103@kernel.org>
Date: Sun, 21 Feb 2016 20:39:19 +0000
From: Jonathan Cameron <jic23@...nel.org>
To: Daniel Baluta <daniel.baluta@...el.com>
Cc: knaack.h@....de, lars@...afoo.de, pmeerw@...erw.net,
linux-iio@...r.kernel.org, linux-kernel@...r.kernel.org,
wsa@...-dreams.de, linux-i2c@...r.kernel.org,
lucas.demarchi@...el.com, srinivas.pandruvada@...ux.intel.com,
ggao@...ensense.com, adi.reus@...il.com, cmo@...exis.com,
mwelling@...e.org
Subject: Re: [RFC PATCH 4/9] iio: imu: inv_mpu6050: Remove unnecessary
parentheses
On 18/02/16 15:53, Daniel Baluta wrote:
> Fixes the following checkpatch warning:
> CHECK: Unnecessary parentheses around cpm->package.elements[i]
>
> Signed-off-by: Daniel Baluta <daniel.baluta@...el.com>
Applied (though I find it hard to care about this one!)
Jonathan
> ---
> drivers/iio/imu/inv_mpu6050/inv_mpu_acpi.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_acpi.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_acpi.c
> index 231a7af..2771106 100644
> --- a/drivers/iio/imu/inv_mpu6050/inv_mpu_acpi.c
> +++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_acpi.c
> @@ -66,11 +66,11 @@ static int asus_acpi_get_sensor_info(struct acpi_device *adev,
> union acpi_object *elem;
> int j;
>
> - elem = &(cpm->package.elements[i]);
> + elem = &cpm->package.elements[i];
> for (j = 0; j < elem->package.count; ++j) {
> union acpi_object *sub_elem;
>
> - sub_elem = &(elem->package.elements[j]);
> + sub_elem = &elem->package.elements[j];
> if (sub_elem->type == ACPI_TYPE_STRING)
> strlcpy(info->type, sub_elem->string.pointer,
> sizeof(info->type));
>
Powered by blists - more mailing lists