提交 03d79558 编写于 作者: R Reyad Attiyat 提交者: Jonathan Cameron

iio: hid-sensor-magn-3d: Fix build warning

Fix build warning, sizeof() called on dynamically
sized pointer, by removing the call and the dependent
function parameter. It is not needed or used in this
driver, when pushing values to an iio buffer.

Changes from v1
- Fix mistake in varible name
Signed-off-by: NReyad Attiyat <reyad.attiyat@gmail.com>
Signed-off-by: NJonathan Cameron <jic23@kernel.org>
上级 e010a2a0
...@@ -246,8 +246,7 @@ static const struct iio_info magn_3d_info = { ...@@ -246,8 +246,7 @@ static const struct iio_info magn_3d_info = {
}; };
/* Function to push data to buffer */ /* Function to push data to buffer */
static void hid_sensor_push_data(struct iio_dev *indio_dev, const void *data, static void hid_sensor_push_data(struct iio_dev *indio_dev, const void *data)
int len)
{ {
dev_dbg(&indio_dev->dev, "hid_sensor_push_data\n"); dev_dbg(&indio_dev->dev, "hid_sensor_push_data\n");
iio_push_to_buffers(indio_dev, data); iio_push_to_buffers(indio_dev, data);
...@@ -263,9 +262,7 @@ static int magn_3d_proc_event(struct hid_sensor_hub_device *hsdev, ...@@ -263,9 +262,7 @@ static int magn_3d_proc_event(struct hid_sensor_hub_device *hsdev,
dev_dbg(&indio_dev->dev, "magn_3d_proc_event\n"); dev_dbg(&indio_dev->dev, "magn_3d_proc_event\n");
if (atomic_read(&magn_state->common_attributes.data_ready)) if (atomic_read(&magn_state->common_attributes.data_ready))
hid_sensor_push_data(indio_dev, hid_sensor_push_data(indio_dev, magn_state->iio_vals);
magn_state->iio_vals,
sizeof(magn_state->iio_vals));
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册