Commit 4febd9f1 authored by Harinath Nampally's avatar Harinath Nampally Committed by Jonathan Cameron

iio: accel: mma8452: Rename read/write event value callbacks to generic function name.

'mma8452_read_thresh' and 'mma8452_write_thresh' functions
does more than just read/write threshold values.
They also handle  IIO_EV_INFO_HIGH_PASS_FILTER_3DB and
IIO_EV_INFO_PERIOD therefore renaming to generic names.

Improves code readability, no impact on functionality.
Signed-off-by: default avatarHarinath Nampally <harinath922@gmail.com>
Acked-by: default avatarMartin Kepplinger <martink@posteo.de>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 3b455cdc
...@@ -792,7 +792,7 @@ static int mma8452_get_event_regs(struct mma8452_data *data, ...@@ -792,7 +792,7 @@ static int mma8452_get_event_regs(struct mma8452_data *data,
} }
} }
static int mma8452_read_thresh(struct iio_dev *indio_dev, static int mma8452_read_event_value(struct iio_dev *indio_dev,
const struct iio_chan_spec *chan, const struct iio_chan_spec *chan,
enum iio_event_type type, enum iio_event_type type,
enum iio_event_direction dir, enum iio_event_direction dir,
...@@ -855,7 +855,7 @@ static int mma8452_read_thresh(struct iio_dev *indio_dev, ...@@ -855,7 +855,7 @@ static int mma8452_read_thresh(struct iio_dev *indio_dev,
} }
} }
static int mma8452_write_thresh(struct iio_dev *indio_dev, static int mma8452_write_event_value(struct iio_dev *indio_dev,
const struct iio_chan_spec *chan, const struct iio_chan_spec *chan,
enum iio_event_type type, enum iio_event_type type,
enum iio_event_direction dir, enum iio_event_direction dir,
...@@ -1391,8 +1391,8 @@ static const struct iio_info mma8452_info = { ...@@ -1391,8 +1391,8 @@ static const struct iio_info mma8452_info = {
.read_raw = &mma8452_read_raw, .read_raw = &mma8452_read_raw,
.write_raw = &mma8452_write_raw, .write_raw = &mma8452_write_raw,
.event_attrs = &mma8452_event_attribute_group, .event_attrs = &mma8452_event_attribute_group,
.read_event_value = &mma8452_read_thresh, .read_event_value = &mma8452_read_event_value,
.write_event_value = &mma8452_write_thresh, .write_event_value = &mma8452_write_event_value,
.read_event_config = &mma8452_read_event_config, .read_event_config = &mma8452_read_event_config,
.write_event_config = &mma8452_write_event_config, .write_event_config = &mma8452_write_event_config,
.debugfs_reg_access = &mma8452_reg_access_dbg, .debugfs_reg_access = &mma8452_reg_access_dbg,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment